-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (43 loc) · 844 Bytes
/
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
* {
margin: 0;
}
body {
height: 100vh;
width: 100vw;
overflow: hidden;
}
#presentation {
height: 100%;
width: 100%;
background: black;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
}
#resize {
background: white;
}
#container {
height: 720px;
display: flex;
flex-flow: column nowrap;
word-wrap: break-word;
justify-content: center;
/* text-align: center; */
/* padding: 0 70px; */
font-size: 40px;
}
#img {
width: 100%;
height: 100%;
/* object-fit: contain; */
object-fit: cover;
}
#des {
position: absolute;
bottom: 0;
width: 100%;
text-align: center;
padding: 10px;
backdrop-filter: blur(10px);
color: white;
/* background: white; */
}