-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (40 loc) · 733 Bytes
/
style.css
File metadata and controls
50 lines (40 loc) · 733 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
*{
text-align: center;
}
.container{
display: flex;
height: 600px;
width: 600px;
margin: 10px auto;
flex-wrap: wrap;
justify-content: space-evenly;
align-content: space-evenly;
}
.container > div{
height: 250px;
width: 250px;
border-radius: 20%;
display: flex;
justify-content: center;
align-items: center;
font-size: 4rem;
color:rgba(0, 0, 0, 0.696);
}
h2{
color: rgba(255, 0, 0, 0.868);
}
.red{
background-color: rgba(255, 0, 0, 0.607);
}
.green{
background-color: rgba(0, 128, 0, 0.607);
}
.blue{
background-color: rgba(0, 0, 255, 0.611);
}
.yellow{
background-color: rgba(255, 255, 0, 0.62);
}
.whiteBg{
background-color: white;
}