-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.css
146 lines (141 loc) · 2.76 KB
/
index.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body {
margin: 24px auto 10;
padding-bottom: 24px;
/*image-rendering: -moz-crisp-edges;*/
/*image-rendering: pixelated;*/
}
.title {
margin: 16px 0 0;
position: relative;
}
.url {
position: relative;
background: 0;
border: 0;
margin: 0;
padding: 0 0 0 32px;
outline: 0;
font: 300 24px/32px Helvetica Neue, Helvetica, Arial, sans-serif;
display: block;
width: 100%;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: rgba(0, 0, 0, .4);
}
.url:focus {
color: #000;
}
.project-link {
position: absolute;
top: 0;
left: 0;
background-position: -160px 0;
}
a {
color: #25d;
text-decoration: underline;
}
a:visited {
color: #73c;
}
a:active {
color: #03a;
}
.dropdown {
display: inline-block;
position: relative;
}
.dropdown > select {
-webkit-appearance: none;
font: inherit;
position: absolute;
opacity: 0;
cursor: pointer;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.area {
overflow: hidden;
margin: 0 -24px;
padding: 0 24px;
}
#player-area, #project-area {
height: 0;
}
#player-area {
border-bottom: 1px solid transparent;
margin-bottom: -1px;
}
.fs #player-area {
overflow: visible;
}
section {
margin: 24px 0;
}
h1,
p {
font: 300 16px/1.5 Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 0 0 16px;
}
h1 {
font: 300 24px/32px Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 16px 0 0;
}
h1.title {
font: 300 54px/72px Helvetica Neue, Helvetica, Arial, sans-serif;
margin: 0;
}
code {
font: 12px Menlo, Monaco, Consolas, Courier New, monospace;
background: #f5f5f5;
border-radius: 3px;
padding: 3px;
}
.package a {
padding: 2px 8px;
background: linear-gradient(#fafafa, #e8e8e8);
box-shadow:
0 0 0 1px rgba(0, 0, 0, .35),
0 1px 4px rgba(0, 0, 0, .2);
border-radius: 3px;
cursor: pointer;
color: #000;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
}
.package a:hover {
background: linear-gradient(#fff, #eaeaea);
box-shadow:
0 0 0 1px rgba(0, 0, 0, .4),
0 1px 4px rgba(0, 0, 0, .3);
}
.package a:active {
background: linear-gradient(#ddd, #eaeaea);
box-shadow:
0 0 0 1px rgba(0, 0, 0, .5),
inset 0 2px 5px rgba(0, 0, 0, .15);
}
.package label,
.package input,
.package a,
.package span {
display: inline-block;
vertical-align: middle;
}
.package input[type=checkbox] {
margin: 0 0 0 16px;
}
#embed-code {
background: 0;
border: 1px solid rgba(0, 0, 0, .4);
margin: 0;
padding: 4px;
outline: 0;
width: 80px;
font: 12px/16px Menlo, Monaco, Consolas, Courier New, monospace;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: rgba(0, 0, 0, .7);
}