-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (70 loc) · 1.28 KB
/
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
65
66
67
68
69
70
71
*{
padding: 0;
margin: 0;
}
.container{
background-color: rgb(255, 228, 196);
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
box-sizing: border-box;
}
.flag{
height: 300px;
margin: 10px;
border: 1px solid black;
}
.blue{
background-color: rgb(0, 0, 255);
height: 300px;
width: 350px;
display: flex;
align-items: center;
justify-content: center;
}
.red{
background-color: rgb(255, 0, 0);
height: 150px;
width: 350px;
display: flex;
align-items: center;
justify-content: center;
}
.white{
background-color: rgb(255, 255, 255);
height: 70px;
width: 70px;
border-radius: 40px;
text-align: center;
align-content: center;
font-size: large;
font-weight: bold;
}
.ivory{
display: flex;
height: 300px;
}
.orange{
background-color: rgb(255, 165, 0);
height: 300px;
width: 116px;
}
.blanc{
background-color: rgb(255, 255, 255);
height: 300px;
width: 116px;
display: flex;
justify-content: center;
align-items: center;
font-size: large;
font-weight: bold;
text-align: center;
}
.vert{
background-color: rgb(0, 128, 0);
height: 300px;
width: 116px;
}