-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
60 lines (57 loc) · 826 Bytes
/
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
body {
margin: 20px;
background: #FFF;
font-family: sans-serif;
}
main {
display: grid;
width: 100%;
grid-template-columns: .6fr 1.4fr;
grid-gap: 20px;
}
iframe {
border: 1px solid #777;
width: 100%;
margin-top: 20px;
border-radius: 3px;
}
h1 {
margin: 0;
}
#about {
display: block;
margin: 0 0 30px;
}
h2 {
margin-top: 0;
}
label {
display: inline-block;
margin-top: 6px;
}
input[type=url] {
width: 100%;
box-sizing: border-box;
}
input[type=url], select {
padding: 4px 6px;
background-color: inherit;
font: inherit;
font-size: .9em;
border: 1px solid #777;
border-radius: 3px;
}
input[type=color], button {
padding: 4px 6px;
border: 1px solid #777;
border-radius: 3px;
background: none;
}
@media screen and (max-width: 650px) {
main {
display: block;
}
#embed {
margin-top: 20px;
}
}