-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathstyle.css
174 lines (171 loc) · 2.75 KB
/
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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
@import url(http://fonts.googleapis.com/css?family=Lato:400,700);
body {
background: #fff;
font: 16px sans-serif;
margin: 0 0 60px;
}
p {
line-height: 1.625;
margin: 0 0 10px;
}
kbd {
background: #34495e;
border-radius: 4px;
color: #ffffff;
font-size: 13px;
padding: 2px 6px;
}
h3 {
color: #bdc3c7;
font-size: 18px;
font-weight: normal;
margin: 0 0 10px;
text-transform: uppercase;
}
.container {
margin: 0 auto;
max-width: 400px;
}
.row {
margin-bottom: 20px;
}
.hint {
color: #bdc3c7;
}
#header {
margin-top: 60px;
transition: all .3s;
}
#header h1 {
color: #34495e;
font: bold 57px Lato, sans-serif;
margin: 0;
text-align: center;
}
#demo {
position: relative;
}
#demo textarea,
#demo input {
border: 2px solid #bdc3c7;
border-radius: 4px;
font: 20px Helvetica, Arial, sans-serif;
display: block;
line-height: 1.467;
outline: none;
padding: 8px 12px;
resize: none;
transition: all .25s;
width: 100%;
}
#demo textarea:focus,
#demo input:focus {
border-color: #1abc9c;
}
#demo .section {
margin-bottom: 30px;
}
#demo #matches {
color: #bdc3c7;
font-size: 12px;
font-family: monospace;
margin-top: 17px;
position: absolute;
right: 33px;
text-transform: uppercase;
transition: all .3s;
}
#options label {
display: inline-block;
margin: 0 20px;
}
#options input {
margin: 0 auto;
margin-bottom: 15px;
width: 15px;
}
#options .options {
padding-top: 10px;
text-align: center;
}
#code {
margin-top: 40px;
}
#code hr {
margin: 10px 0 50px;
}
#code pre {
-moz-tab-size: 4;
tab-size: 4;
background-color: #f7f9fa;
border-color: #e9ecef;
border-width: 2px;
word-wrap: normal;
}
#download {
text-align: center;
}
#download a {
border: 2px solid #1abc9c;
border-radius: 5px;
color: #1abc9c;
display: inline-block;
font: bold 12px Lato, sans-serif;
letter-spacing: 1px;
padding: 12px 16px;
text-transform: uppercase;
transition: all .1s;
word-spacing: 3px;
}
#download a:hover {
background: #1abc9c;
color: #fff;
text-decoration: none;
}
#download a:active {
background: #16a085;
border-color: #16a085;
}
#download a + a {
margin-left: 5px;
}
#download hr {
margin-bottom: 40px;
}
#footer {
line-height: 1.3em;
margin-top: 40px;
text-align: center;
text-transform: uppercase;
}
#footer a {
color: inherit;
text-decoration: none;
}
#footer a:hover {
color: #1abc9c;
}
#footer small {
color: #bec5d0;
font: 12px Lato, sans-serif;
word-spacing: 2px;
}
@media (max-width: 768px) {
#header {
margin-top: 30px;
}
#header h1 {
font-size: 46px;
}
#fork {
display: none;
}
}
.com { color: #93a1a1; }
.lit { color: #195f91; }
.pun, .opn, .clo { color: #93a1a1; }
.fun { color: #dc322f; }
.str, .atv { color: #D14; }
.kwd, .prettyprint .tag { color: #1e347b; }
.typ, .atn, .dec, .var { color: teal; }
.pln { color: #48484c; }