-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.css
More file actions
114 lines (98 loc) · 1.47 KB
/
sample.css
File metadata and controls
114 lines (98 loc) · 1.47 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
* {
margin: 0;
padding: 0;
font-family: "Lato", sans-serif;
}
.navbar {
background-color: #051923;
height: 50px;
}
ul {
width: 85%;
margin-left: auto;
margin-right: auto;
list-style-type: none;
overflow: auto;
}
ul li {
display: inline;
margin-top: 5px;
}
ul li a {
background-color: #456990;
text-decoration: none;
padding: 10px;
border: 1px transparent solid;
margin-top: 5px;
margin-right: 40px;
border-radius: 10px;
color: white;
}
.r-float {
float: right;
}
.l-float {
float: left;
}
#blue-btn {
background-color: #f75b00;
}
.container {
height: 91vh;
background-color: #003554;
border: 2px black solid;
overflow: auto;
position: relative;
}
.box {
height: 300px;
width: 400px;
box-shadow: 5px 10px;
border-radius: 50px;
border: 2px white solid;
background-color: black;
position: absolute;
top: 35%;
left: 50%;
transform: translate(-50%, -50%);
}
.box-wrapper {
height: 100px;
position: relative;
top: 80%;
width: 60%;
margin-left: auto;
margin-right: auto;
color: white;
align-items: center;
}
.small-box {
height: 150px;
width: 150px;
margin: 10px 10px;
background-color: black;
}
.s-box1 {
position: absolute;
bottom: 0;
}
.s-box2 {
position: absolute;
left: 25%;
bottom: 0;
}
.s-box3 {
position: absolute;
left: 50%;
bottom: 0;
}
.s-box4 {
position: absolute;
left: 75%;
bottom: 0;
}
.box video {
height: 100%;
width: 100%;
border-radius: 50px;
}