-
Notifications
You must be signed in to change notification settings - Fork 28
/
example.css
66 lines (66 loc) · 1.16 KB
/
example.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
* { box-sizing: border-box; }
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
body {
background-color: #EEE;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
color: #444;
font-family: 'Lato', sans-serif;
line-height: 2;
padding: 2em;
}
a { color: #3498db; text-decoration: none; }
a:hover { color: #2980b9; }
form {
background: rgba(255, 255, 255, 0.9);
padding: 30px;
width: 330px;
border-radius: 4px;
}
fieldset {
border: 0;
margin: 0;
padding: 0;
font-size: 1em;
}
label {
display: block;
}
input,
button {
max-width: 260px;
font-size: 1em;
padding: .5em;
border-radius: 3px;
border: 1px solid #3498db;
}
button {
border: 0;
background: #3498db;
color: #FFF;
}
.loading {
background: #C5E2ED;
}
.examples li {
list-style: none;
display: inline;
padding: 0;
margin: 0 1ex 0 0;
}
.examples li:first-child {
display: block;
}
.examples,
p {
padding: 0;
margin: 1em 0 0 0;
font-size: .8em;
}