-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (52 loc) · 922 Bytes
/
style.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
body {
margin: 0;
padding: 0;
background-color: blue;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 32px;
block-size: 100svh;
overflow: hidden;
.box {
display: inline-block;
inline-size: 150px;
block-size: 150px;
box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
align-content: center;
text-align: center;
border-radius: 4px;
transition: all 0.3s linear;
&.box--white {
background-color: #ff9800;
}
&.box--yellow {
background-color: #f57c00;
}
&.box--orange {
background-color: #fff;
}
&.box--transparent {
background-color: transparent;
}
&.box--green {
background-color: #fff;
.tamil {
background-color: #bb4545;
color: pink;
font-size: 24px;
font-weight: bold;
}
}
&.box--red {
background-color: red;
color: blue;
&:hover {
background-color: #fff;
}
}
}
}