-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (93 loc) · 2.17 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Pixelify+Sans:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
user-select: none;
}
body {
background-color: #1A2332;
font-family: "Roboto", sans-serif;
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
}
header {
background: #0f131a;
}
header section .navbar {
display: flex;
flex-direction: row;
}
.icon {
margin: 10px 100px;
}
header section .navbar .icon a img {
max-width: 70px;
}
.navbar {
padding: 0 20px 0 20px;
}
.text {
margin: auto 100px auto auto;
text-align: center;
}
.text a {
margin: 0 8px 0 8px;
color: white;
}
@media (max-width: 768px) {
header .text a {
display: none;
}
}
main {
margin: 100px auto;
background: rgba(255, 255, 255, 0.055);
border-radius: 8px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 20px;
text-align: center;
max-width: 1200px;
width: 100%;
}
video {
margin: 20px 0 0 0;
max-width: 600px;
width: 100%;
border-radius: 16px;
}
ul li {
text-align: left;
margin-left: 50px;
}
.boobs {
margin: auto;
max-width: 600px;
width: 100%;
border-radius: 32px;
border: 20px solid rgb(0, 0, 0);
}
a button {
margin-top: 20px;
font-size: 25px;
color: white;
padding: 10px 30px 10px 30px;
cursor: pointer;
border-radius: 16px;
border: 1px solid black;
background: rgba(78, 42, 107, 0.856);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
footer {
width: 100%;
padding: 20px;
background-color: black;
text-align: center;
}