-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (54 loc) · 954 Bytes
/
Copy pathindex.css
File metadata and controls
57 lines (54 loc) · 954 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
* {
font-family: 'Courier New', Courier, monospace;
}
body {
margin: 5rem;
text-align: center;
}
div, pre, input, button, td {
font-size: 2rem;
}
div {
margin: 1rem 0;
}
pre {
margin: 3rem 1rem;
padding: 2em;
background-color: lightblue;
border-radius: 3rem;
font-size: 150%;
}
input, button {
background-color: lightgray;
padding: 0.5em 1em;
border-radius: 3em;
border: 0.2em solid gray;
}
button {
background-color: gray;
color: white;
cursor: pointer;
}
@media (max-width: 600px) {
body {
margin: 2rem 1rem;
}
div, input, button, td {
font-size: 1rem;
}
.label {
display: none;
}
pre {
margin: 3rem 0.2rem;
padding: 2em;
background-color: lightblue;
border-radius: 3rem;
font-size: 150%;
}
}
@media (max-width: 1000px) {
div, input, button, td {
font-size: 1.2rem;
}
}