-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (52 loc) · 885 Bytes
/
styles.css
File metadata and controls
60 lines (52 loc) · 885 Bytes
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
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
font-size: 20px;
line-height: 1.3em;
}
main {
display: flex;
justify-content: center;
text-align: center;
}
h1 {
font-size: 2em;
text-align: center;
line-height: 1em;
}
h1 a {
text-decoration: none;
color: inherit;
}
span {
color: deepskyblue;
}
button,
select {
cursor: pointer;
font-size: 100%;
margin: 0.25em;
min-width: 8em;
}
.controls {
margin: 1em 0;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.code {
font-family: monospace;
box-shadow: #767676 0px 20px 30px -10px;
border-radius: 0.5em;
padding: 1em 2em;
min-width: 32em;
max-width: 100%;
min-height: 12em;
text-align: left;
border: 1px solid #cecece;
margin: 1em;
line-height: 1.4em;
}