-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (85 loc) · 2.06 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
84
85
86
87
88
89
*{
padding: 0px;
margin: 0px;
}
body{
height: 200px;
}
.main{
background-color: black;
height: 500px;
position: relative;
left: 200px;
width: 500px;
}
.box{
height: 20px;
color: rgb(235, 241, 248);
background-color: rgb(15, 7, 7);
top: 20px;
}
.box2{
height: 20px;
color: rgb(4, 4, 9);
background-color: rgb(246, 244, 244);
padding: 0px;
margin: 0px;
top: 10px;
position: sticky;
}
.box3{
color: white;
}
.box4{
color: white;
background-color: red;
width: 120px;
height: 60px;
position: relative;
left: 20px;
}
.box5{
color: white;
width: 120px;
height: 60px;
background-color: purple;
position: relative;
left: 170px;
top: -60px;
}
.box6{
color: white;
background-color: green;
width: 120px;
height: 60px;
position: relative;
left: 320px;
top: -120px;
}
.box7{
color: rgb(225, 219, 225);
background-color: rgb(226, 133, 225);
width: 120px;
height: 60px;
position: relative;
left: 20px;
top: -60px;
}
.box8{
color: white;
background-color: rgb(91, 57, 224);
width: 120px;
height: 60px;
position: relative;
left: 170px;
top: -120px;
}
.box9{
color: white;
background-color: rgb(22, 215, 226);
width: 120px;
height: 60px;
position: relative;
left: 320px;
top: -180px;
}