-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
183 lines (182 loc) · 2.97 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
175
176
177
178
179
180
181
182
183
/* CSS files add styling rules to your content */
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue", Sans-serif;
color: #222;
padding: 1rem 20px;
margin-left: auto;
margin-right: auto;
width: 100%;
max-width: 1000px;
}
@media (max-width: smallViewport) {
body {
padding-left: 20px;
padding-right: 20px;
}
}
header {
margin-top: 1rem;
position: relative;
}
header .logo {
vertical-align: middle;
margin-right: 5px;
width: 70px;
}
h1,
h2 {
font-weight: bold;
text-align: left;
}
h1 {
font-size: 28px;
}
h2 {
font-size: 23px;
}
h3,
h4 {
font-size: 16px;
display: inline-block;
margin: 12px;
}
h5 {
display: inline-block;
padding: 3px;
padding-bottom: 0px;
padding-top: 2px;
margin: 0px;
margin-top: 3px;
border-radius: 3px;
background-color: #daa9ff;
position: relative;
top: -2px;
color: #000;
font-weight: bold;
font-size: 70%;
}
p {
line-height: 20px;
}
a {
color: #222;
text-decoration: none;
}
main,
section {
clear: both;
}
section,
article {
margin-top: 1rem;
}
section {
margin-top: 3rem;
}
section h2,
section h3 {
display: inline-block;
-webkit-transform: rotate(-1deg);
transform: rotate(-1deg);
z-index: 0;
background-color: lavender;
padding: 4px 8px;
border-radius: 8px;
}
section h2 span,
section h3 span {
display: inline-block;
-webkit-transform: rotate(1deg);
transform: rotate(1deg);
}
section .nobg {
background-color: transparent !important;
}
section ul li a {
color: #00f;
}
section h1,
section h2.introheader {
padding: 0px;
}
section h1 span,
section h2.introheader span {
display: inline-block;
z-index: 0;
padding: 2px 2px;
border-radius: 8px;
margin: 0 5px;
}
section h1 span span.highlight,
section h2.introheader span span.highlight {
-webkit-transform: rotate(-1deg);
transform: rotate(-1deg);
padding: 2px 4px;
}
section h1 span span.highlight span,
section h2.introheader span span.highlight span {
display: inline-block;
-webkit-transform: rotate(1deg);
transform: rotate(1deg);
}
.button,
button {
font-family: "Benton Sans", "Helvetica Neue", Sans-serif;
text-align: left;
font-size: 14px;
line-height: 14px;
font-weight: 600;
background-color: #fff;
border: solid #222 2px;
display: inline-block;
border-radius: 5px;
padding: 6px 12px;
cursor: pointer;
}
.button:hover,
button:hover {
background-color: #eaeaea;
text-decoration: none;
}
.button:active,
button:active,
.button.active,
button.active {
background-color: #e8e8e8;
color: #222;
}
input {
padding: 1em;
background: #efefef;
font-size: 1em;
}
section .glitch-remix {
position: relative;
top: 10px;
left: 5px;
}
input[type="text"],
#copy-script {
display: block;
margin: 1em;
max-width: 600px;
padding: 0.5em;
font-size: 1em;
background: #efefef;
}
.glitchButton {
z-index: 1;
}
.glitchButton.inline {
position: relative;
top: 10px;
left: 10px;
margin-right: 20px;
}
a {
color: cornflowerblue;
}