-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (77 loc) · 1.24 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
72
73
74
75
76
77
78
79
80
81
82
83
*{
box-sizing: border-box;
}
.bmw{
position: relative;
height: 300px;
width: 300px;
background-color: rgb(0, 0, 0);
border-radius: 100%;
}
.b,
.m,
.w{
position: absolute;
color: white;
font-size: 55px;
font-weight: bold;
}
.b{
top: 45px;
left: 15%;
transform: rotate(315deg);
}
.m{
top: 5px;
left: 120px;
}
.w{
top: 42px;
right: 13%;
transform: rotate(50deg);
}
.innercircle{
position: relative;
width: 60%;
height: 60%;
border-radius: 100%;
background-color: black;
top: 20%;
left: 20%;
}
.s1{
left: 0;
top: 0;
position: absolute;
height: 49%;
width: 49%;
background-color: aqua;
border-radius: 100% 0 0 ;
}
.s2{
right: 0;
top: 0;
position: absolute;
height: 49%;
width: 49%;
background-color: white;
border-radius: 0 100% 0 0;
}
.s3{
left: 0;
bottom: 0;
position: absolute;
height: 49%;
width: 49%;
background-color: white;
border-radius: 0 0 0 100%;
}
.s4{
right: 0;
bottom:0;
position: absolute;
height: 49%;
width: 49%;
background-color:aqua;
border-radius: 0 0 100% 0;
}