-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
92 lines (82 loc) · 1.47 KB
/
styles.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
html {
min-height: 100%;
position: relative;
}
body {
align-items: center;
justify-content: center;
flex-direction: column;
background-image: linear-gradient(rgb(67, 218, 252), rgb(92, 163, 245));
height: 100%;
}
h1 {
text-align: center;
color: white;
}
.board {
display: grid;
justify-content: center;
grid-template-columns: 100px 100px 100px 100px;
grid-template-rows: 100px 100px 100px 100px;
margin-bottom: 10px;
}
.reset {
display: flex;
justify-content: center;
margin-top: 20px;
}
.menu {
display: flex;
justify-content: center;
align-items: center;
gap: 120px;
}
.score {
display: flex;
gap: 2px;
margin-right: 30px;
}
.letter {
background-color: rgb(251, 149, 5);
border-style: solid;
display: flex;
align-items: center;
justify-content: center;
font-size: 75px;
color: white;
border-color: white;
border-width: 0.5px;
border-radius: 10px;
margin: 1px;
}
input {
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border-width: 0px;
border-color: rgb(246, 244, 244);
}
#enter {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
border-color: rgb(245, 243, 243);
border-width: 1px;
}
.input {
display: flex;
}
.reset {
overflow: hidden;
}
#reset {
border-radius: 10px;
border-width: 1px;
border-color: white;
background-color: rgb(251, 149, 5);
color: white;
padding: 5px;
}
.response {
display: flex;
align-items: center;
justify-content: center;
}