-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
73 lines (63 loc) · 1018 Bytes
/
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
* {
font-family: "Nunito", sans-serif;
font-size: 18px;
font-weight: 400;
margin: 0;
}
body,
html,
input[type="text"] {
background-color: midnightblue;
color: yellow;
padding: 12px;
}
button {
border: none;
border-radius: 8px;
padding: 6px 12px;
background-color: yellow;
color: midnightblue;
cursor: pointer;
}
h1 {
font-size: 24px;
}
.gameBoard {
display: flex;
flex-direction: row;
align-items: center;
padding: 6px;
gap: 6px;
}
.gameBoardLetter {
background-color: yellow;
color: midnightblue;
text-transform: uppercase;
font-size: 24px;
font-weight: bold;
border: none;
border-radius: 6px;
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
}
input[type="text"].gameBoardLetter {
background-color: orange;
caret-color: midnightblue;
}
pre {
font-family: "Inconsolata", monospace;
}
.fadeIn {
animation: fadeIn 0.5s;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}