-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (57 loc) · 1.08 KB
/
style.css
File metadata and controls
62 lines (57 loc) · 1.08 KB
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
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
text-align: center;
margin-top: 20px;
animation: spin 10s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
#container {
display: flex;
}
.box {
width: 50px;
height: 50px;
background-color: green;
margin-right: 10px;
}
#buttons {
margin-top: 10px;
padding: 10px;
font-size: 16px;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 5px;
width: 500px;
height: 500px;
}
.Fgrid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 0px;
width: 100px;
height: 100px;
}
.flash {
width: 100%;
height: 100%;
background-color: lightblue;
border: 1px solid black;
}