-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
98 lines (86 loc) · 1.67 KB
/
index.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
/* font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Sans Display', sans-serif; */
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'Noto Sans', sans-serif;
color: white;
}
body {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-image: url("default_background.png");
background-color: #000000;
display: flex;
flex-direction: column;
justify-content: flex-end;
}
#video-background {
position: relative;
object-fit: cover;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
z-index: -1;
}
h1 {
font-family: 'Noto Sans Display', sans-serif;
font-size: 50px;
margin: 10px 0;
}
.main-container {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
padding: 20px;
gap: 20px;
justify-content: space-between;
background-color: rgba(0,0,0,0.4);
box-shadow: rgb(0 0 0 / 40%) 0px 0px 50px 50px;
}
.main-container > * {
margin-top: auto;
height: fit-content;
}
#sponsors {
display: flex;
flex-direction: row;
gap: 10px;
}
#sponsors > * {
max-height: 40px;
}
#starting-in {
background-color: red;
width: fit-content;
padding: 5px 10px;
border-radius: 7px;
color: white;
font-weight: 600;
}
.date-time-location {
font-weight: 600;
}
#description {
max-width: 800px;
}
#qr-code {
background: white;
padding: 10px;
border-radius: 10px;
}
.light-background {
color: #101010;
text-shadow: #F0F0F0 0px 0px 7px;;
}
.dark-background {
color: #F0F0F0;
text-shadow: #101010 0px 0px 7px;;
}