-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle.scss
59 lines (51 loc) · 990 Bytes
/
style.scss
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
body {
background: #aaa;
overflow-y: auto;
font-family: 'Roboto Mono', Consolas, 'Courier New', Courier, monospace;
font-weight: bold;
color: #293f99;
header {
margin: 0 auto;
width: 90%;
max-width: 600px;
img {
width: 100%;
height: auto;
}
}
main {
text-align: center;
margin: 0 auto;
width: 90%;
max-width: 600px;
}
}
pre, input, form, button {
font-size: 24px;
font-family: inherit;
font-weight: inherit;
color: inherit;
}
form {
display: flex;
margin-bottom: 1em;
label {
display: block;
flex-grow: 1;
margin-bottom: 5px;
input {
display: inline-block;
border: none;
border: 1px solid lightgray;
background: none;
width: calc(100% - 4ch);
padding: 0.3em;
box-sizing: border-box;
}
}
button {
outline: none;
border: none;
background: none;
}
}