forked from cookpete/react-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefaults.css
More file actions
77 lines (65 loc) · 1.08 KB
/
Copy pathdefaults.css
File metadata and controls
77 lines (65 loc) · 1.08 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
$light-grey: #eee;
body {
margin-right: 10px;
margin-left: 10px;
font-size: 14px;
line-height: 1.4;
}
em {
font-style: italic;
}
body,
h1,
h2,
h3 {
font-weight: 300;
margin-bottom: 1em;
}
h1 { font-size: 20px; }
h2 { font-size: 16px; margin-top: 1em; }
table,
progress {
width: 100%;
}
th,
td,
[type=text],
textarea {
margin-right: 5px;
padding: 3px 6px;
}
th {
width: 10%;
font-weight: 500;
text-align: right;
white-space: nowrap;
vertical-align: middle;
}
[type=text],
textarea {
width: 200px;
padding: 5px;
border: 1px solid darken($light-grey, 20);
border-radius: 3px;
outline: 0;
&:focus {
border-color: darken($light-grey, 30);
box-shadow: 0 0 5px $light-grey;
}
}
textarea {
height: 100px;
font-family: monospace;
vertical-align: bottom;
}
button {
margin: 3px;
padding: 6px 12px;
border: 0;
border-radius: 3px;
outline: 0;
background-color: $light-grey;
&:focus { background: darken($light-grey, 5); }
&:hover { background: darken($light-grey, 10); }
&:active { background: darken($light-grey, 15); }
}