-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 1023 Bytes
/
style.css
File metadata and controls
57 lines (50 loc) · 1023 Bytes
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body{
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5px;
background:linear-gradient(to top,blue,black);
color: white;
}
#grid-container{
width: 250px;
height: 250px;
display: grid;
grid-template-columns: repeat(3,1fr);
grid-template-rows: repeat(3,1fr);
gap: 5px;
margin: 14px;
}
#grid-container .box{
background-color: rgba(128, 128, 128, 0.5);
border-radius: 10px;
cursor: pointer;
transition: 0.3s all ease;
}
#grid-container .box:hover{
transform: scale(1.05);
}
#start-btn{
padding: 5px 24px;
border-radius: 10px;
font-size: large;
cursor: pointer;
border: none;
outline: none;
position: relative;
transition: all 0.3s ease;
}
#start-btn:hover{
transform:scale(1.05);
}
.active {
background-color: green !important;
}