-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (86 loc) · 2.08 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
93
94
95
96
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
body{
font-weight: 600;
font-family:'Outfit','Sans-Serif';
}
:root{
--main-color:rgb(7, 59, 76);
--headin-color:rgb(159, 238, 217);
--button-color:rgb(255, 209, 102);
--xo-color:rgb(241, 112, 142);
--fonts:'Outfit','Sans-Serif';
}
.mainContainer {
background-color: var(--main-color);
display: grid;
height: 100vh;
grid-template-rows: 20% 70% 10%; /* Adjust the row heights as needed */
}
.heading {
box-shadow: 0px 15px 10px -15px #111;
color:var(--xo-color);
font-size: 3em;
background-color: var(--headin-color);
display: flex;
justify-content: center;
align-items: center;
}
.grid {
height: 50%;
width: 20%;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 15px;
/* margin-bottom: 100px; */
}
.main__summary-section {
display: grid;
width: 100%;
gap: 15px;
grid-template-columns: 1fr 1fr 1fr;
margin-top: 50px;
width: 90%;
}
#cell{
box-shadow: 0px 15px 10px -15px #111;
background-color: var(--button-color);
border-radius: 8px;
width: 100px;
height: 100px; /* Adjust the height as needed */
font-size: 54px; /* Adjust the font size as needed */
border: none;
font-family: var(--fonts);
color: var(--xo-color);
font-weight: 800;
}
#cell:hover{
cursor: pointer;
}
.footer {
display: flex;
justify-content: center;
align-items: center;
background-color: #ccc; /* Just for visibility */
}
.status {
height: 100px;
width: 400px;
background-color: var(--xo-color);
box-shadow: 0px 15px 10px -15px #111;
border-radius: 10px;
text-align: center;
color:var(--main-color);
font-family: var(--fonts);
font-weight: 700;
font-size: 1.5rem;
}
.restart{
background-color: var(--xo-color);
box-shadow: 0px 15px 10px -15px #111;
border-radius: 10px;
text-align: center;
color:var(--main-color);
font-family: var(--fonts);
font-weight: 700;
font-size: 1.2rem;
}