-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (49 loc) · 772 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
.nav {
background-color: #ff0000;
}
.navbar-right {
color: white;
}
.content {
overflow: hidden;
width: 100%;
height: 100%;
display: flex;
}
.square {
width: 100px;
height: 500px;
background: #ff0000;
border-radius: 50px;
position: fixed;
transform: rotate(-45deg);
right: 5%;
bottom: -20%;
}
.square1 {
width: 100px;
height: 900px;
background: #ff0000;
border-radius: 50px;
position: fixed;
transform: rotate(-45deg);
right: 30%;
bottom: -40%;
}
.square2 {
width: 100px;
height: 700px;
background: #ff0000;
border-radius: 50px;
position: fixed;
transform: rotate(-45deg);
right: 40%;
bottom: -50%;
}
#label {
position: relative;
z-index: 20;
font-size: 80px;
text-align: center;
margin-top: 20%;
}