-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles1.css
More file actions
114 lines (100 loc) · 1.93 KB
/
Copy pathstyles1.css
File metadata and controls
114 lines (100 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
body {
margin: 0;
padding: 0;
background-color: rgb(9, 87, 243);
}
.whitespace {
background-color: black;
height: 70vh;
width: 70vh;
position: fixed;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
border-radius: 10px;
}
.Level{
background-color: white;
width: 100px;
height: 100px;
position: absolute;
right: 50%;
transform: translate(50%);
border-radius: 20%;
display: flex;
align-content: center;
justify-content: center;
}
.levelcss{
font-size: 80px;
margin: 0px;
}
.blackcircle {
background-color: black;
color: white;
height: 80%;
width: 80%;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.flex1{
height: 100%;
width: 50%;
display: flex;
flex-direction: column;
align-content: right;
justify-content: bottom;
row-gap: 20px;
padding-top: 5%;
padding-bottom: 5%;
}
.flex2{
height: 100%;
width: 50%;
height: 100%;
width: 50%;
display: flex;
flex-direction: column;
align-content: right;
justify-content: bottom;
row-gap: 20px;
}
.red{
background-color: #950303;
height: 50%;
width: 100%;
border-radius: 100% 0 0% 0%;
align-content: right;
justify-content: bottom;
}
.yellow{
background-color: #919102;
height: 50%;
width: 100%;
border-radius: 0% 0 100% 0%;
align-content: right;
justify-content: bottom;
}
.blue{
background-color: #01018a;
height: 50%;
width: 100%;
border-radius: 0% 100% 0% 0%;
align-content: right;
justify-content: bottom;
}
.green{
height: 50%;
width: 100%;
background-color: #068e06;
border-radius: 0% 0% 0% 100%;
align-content: right;
justify-content: bottom;
}