forked from muan/github-gmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
92 lines (79 loc) · 1.47 KB
/
options.css
File metadata and controls
92 lines (79 loc) · 1.47 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body, button {
background-color: #fff;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-size: 13px;
line-height: 1.6;
}
body, * {
box-sizing: border-box;
}
.wrapper {
width: 500px;
margin: 30px auto;
border-radius: 3px;
padding: 0 20px;
overflow: hidden;
border: 1px solid #e0e0e0;
}
.option {
margin: 0 -20px 0;
padding: 20px;
background-color: #f9f9f9;
transition: all 0.6s;
}
.option:last-child {
border-bottom: 1px solid #e0e0e0;
margin-bottom: 20px;
}
.option:nth-child(even) {
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
background-color: #fff;
}
.saved.option {
background: #ffe;
color: #333;
}
input[type]:focus {
background-color: #fff;
}
input[type] {
background: none;
border: 1px solid #e0e0e0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
padding: 9px;
margin-top: 5px;
font-family: monospace;
}
input[type], button {
display: block;
line-height: 1;
width: 100%;
}
label {
font-weight: bold;
}
button {
background: #4a6;
border: 0;
padding: 15px 10px;
color: #fff;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .1);
transition: all .6s;
margin-bottom: 20px;
}
button:active {
box-shadow: inset 0 4px 0 rgba(0, 0, 0, .1);
}
code {
background-color: #f0f0f0;
padding: 0 3px;
border: 1px solid #ddd;
font-family: monospace;
font-size: 12px;
white-space: nowrap;
border-radius: 2px;
}