-
Notifications
You must be signed in to change notification settings - Fork 25
/
demo-style.css
77 lines (65 loc) · 1.05 KB
/
demo-style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: Roboto, 'Open Sans', 'Segoe UI', 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background: #eee;
font-size: 18px;
line-height: 1.3;
}
.wrapper {
position: relative;
max-width: 900px;
margin: 1em auto;
background: #fff;
padding: 1em;
}
h1 {
font-size: 1.5em;
margin-top: 1em;
}
h2 {
font-size: 1em;
margin-bottom: 0;
}
p {
margin: 1em 0;
}
a {
color: #33aaff;
text-decoration: none;
border-bottom: 1px solid;
}
a:hover, a:focus {
color: #528CE0;
}
input {
font-family: Roboto, 'Open Sans', 'Segoe UI', 'Helvetica Neue', 'HelveticaNeue', Helvetica, Arial, sans-serif;
font-size: 18px;
padding: 3px 10px;
vertical-align: middle;
}
label {
vertical-align: middle;
}
.pikaday-container {
display: block;
width: 320px;
max-width: 100%;
}
.output {
padding: 5px;
background: #33aaff;
color: #fff;
line-height: 1.5em;
min-height: 1.5em;
width: 320px;
max-width: 100%;
margin: 0;
}
.output:before {
content: "> ";
}