-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (97 loc) · 1.57 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
* {
box-sizing: border-box;
}
@keyframes spin {
to {
transform: rotateZ(360deg);
}
}
.hidden {
display: none;
}
.intro{
text-align: center;
}
.intro h1{
display: inline-block;
font-size: 2rem;
padding: 10px;
border-bottom: 2px solid black;
}
.intro p{
font-size: 1.2rem;
}
.intro img{
width: 1.5rem;
height: auto;
animation: spin 1.5s linear infinite;
}
.word-container{
text-align: center;
padding: 10px;
}
.word-row{
margin: 10px;
padding: 5px;
color: white;
}
.word-row input {
color: black;
border: 1px solid black;
margin: 0 5px;
font-size: 2rem;
text-align: center;
width: 3rem;
border-radius: 10px;
}
.controls {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 20px;
}
.reset,
.previous{
border: 1px solid black;
padding: 5px;
border-radius: 10px;
font-size: 2rem;
width: 100px;
}
.reset:hover,
.previous:hover{
cursor: pointer;
}
@media (max-width: 600px) {
.word-row input {
width: 2rem;
font-size: 1.5rem;
}
.intro h1 {
font-size: 1.5rem;
}
.intro p {
font-size: 1rem;
}
.reset, .previous {
width: 80px;
font-size: 1.5rem;
}
}
@media (max-width: 375px) {
.word-row input {
width: 2rem;
font-size: 1.5rem;
margin: 0 3px;
}
.intro h1 {
font-size: 1.5rem;
}
.intro p {
font-size: 1rem;
}
.reset, .previous {
width: 80px;
font-size: 1.5rem;
}
}