-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
66 lines (62 loc) · 1012 Bytes
/
index.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
* {
font-family: 'Courier New', Courier, monospace;
}
body {
margin: 2rem;
text-align: center;
}
div, textarea, button {
font-size: 2rem;
}
div {
margin: 0.2rem 0;
}
textarea, button {
background-color: lightgray;
border-radius: 1em;
border: 0.5rem solid gray;
}
textarea {
text-align: center;
letter-spacing: 0.3em;
padding: 1em;
box-sizing: border-box;
max-width: 100%;
max-height: 100vw;
}
button {
background-color: gray;
color: white;
font-size: 3rem;
padding: 0 0.5em;
cursor: pointer;
}
table {
margin-top: 1rem;
border-collapse: collapse;
border: 0.5rem solid gray;
}
td {
width: 1rem;
height: 1rem;
border: 1px solid blue;
}
td.on {
background-color: navy;
}
@media (max-width: 650px) {
body {
margin: 0.5rem;
}
}
@media (max-width: 300px) {
body {
margin: 0.2rem;
}
textarea {
font-size: 1.2rem;
}
button {
font-size: 2rem;
}
}