-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (95 loc) · 1.67 KB
/
styles.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
111
112
113
114
115
116
117
118
119
120
121
122
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100vh;
background-color: #161616;
padding: 10px 5%;
font-family: 'Poppins', sans-serif;
}
.label {
text-align: center;
color: lightskyblue;
margin-bottom: 10px;
font-family: 'Poppins', sans-serif;
font-weight: bold;
}
input {
width: 100%;
padding: 10px;
margin-bottom: 20px;
text-align: center;
color: whitesmoke;
border: transparent;
background: none;
border-radius: 10px;
box-shadow: 0px 0px 5px 3px rgba(10, 10, 10, 0.671);
font-family: 'Poppins', sans-serif;
font-weight: bold;
}
input:focus-visible {
outline: none;
}
.wrapper {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.item {
position: relative;
overflow: hidden;
flex-basis: 500px;
flex-grow: 1;
padding: 10px;
border-radius: 20px;
color: whitesmoke;
box-shadow: 0px 0px 5px 3px rgba(10, 10, 10, 0.671);
display: flex;
flex-direction: column;
min-height: 700px;
}
.img {
object-fit: cover;
}
.video,
.img {
width: 100%;
height: 416px;
border-radius: 15px;
margin-bottom: 10px;
border: none;
}
h2 {
text-align: center;
margin-bottom: 5px;
font-size: 20px;
}
span {
color: lightskyblue;
font-weight: bold;
text-align: center;
margin-top: auto;
white-space: nowrap;
text-overflow: clip;
}
.cover {
position: absolute;
z-index: -1;
left: 0;
top: 0;
height: 100%;
width: 100%;
object-fit: cover;
filter: blur(25px) brightness(0.7);
}
.error {
margin-block: auto;
width: 100%;
text-align: center;
}