-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordle.css
70 lines (61 loc) · 1.21 KB
/
wordle.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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');
* {
font-family: 'Montserrat', sans-serif;
letter-spacing: 2px;
margin: 0px;
box-sizing: border-box;
}
.row>div {
border: 1px solid #00000033;
border-radius: 0.5rem;
margin: 5px;
}
.row>div {
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
font-size: 1.5rem;
}
.row {
display: flex;
width: fit-content;
margin: 5px;
background-color: aliceblue;
}
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #A0E9FF;
}
#main {
background-color: aliceblue;
padding: 15px;
border-radius: 25px;
}
#enterBtn {
margin-top: 30px;
padding: 10px 20px;
border: none;
font-size: 1.2rem;
border-radius: 10px;
background-color: azure;
cursor: pointer;
}
#enterBtn:hover,
.glow {
border-color: #ffc600;
box-shadow: 0 0 1rem #ffc600;
transform: scale(1.05);
}
#heading {
margin: 30px 0px;
font-size: 2.5rem;
text-transform: uppercase;
text-align: center;
}