-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
80 lines (72 loc) · 1.59 KB
/
main.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
:root{
font-family: 'Hubballi', cursive;
}
body{
background-color: #bfa4d1;
}
#header{
height: 15vh;
text-align: center;
font-size: 80px;
}
#gameGrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
height: 70vh;
margin-left: 25vw;
margin-right: 25vw;
}
.grid {
display: flex;
align-items: center;
justify-content: center;
border: 1px solid black;
font-size: 60px;
background-color: #e6c3cf;
}
#turn{
text-align: center;
font-size: 30px;
padding: 10px;
}
.btn{
display: grid;
place-items: center;
padding: 10px;
}
#restart{
border: 0;
outline: 0;
cursor: pointer;
color: white;
background-color: rgb(84, 105, 212);
box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(84 105 212) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
border-radius: 4px;
font-size: 20px;
font-weight: 500;
padding: 4px 8px;
display: inline-block;
min-height: 35px;
transition: background-color .24s,box-shadow .24s;
}
.footer {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 5px;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
}
.fa-github {
font-size: 24px;
transition: transform 0.3s ease-in-out;
color: black;
}
.fa-linkedin {
font-size: 24px;
transition: transform 0.3s ease-in-out;
color: #2867B2;
}