-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (56 loc) · 927 Bytes
/
index.css
File metadata and controls
65 lines (56 loc) · 927 Bytes
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
* {
font-family: 'Montserrat', sans-serif;
}
body {
margin: 0;
overflow: hidden;
}
#wrapper {
position: relative;
width: 100vw;
height: 100vh;
background: #000000b7;
display: inline-flex;
flex-direction: row;
overflow: hidden;
}
#right {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
margin: 0 10px;
overflow: hidden;
}
#left {
display: flex;
align-items: center;
}
#left img {
height: 85vh;
width: 85vh;
margin: 0 0 0 7.5vh;
}
#title, #author {
display: inline-block;
margin: 1px 0;
white-space: nowrap;
}
#title {
font-size: 35vh;
color: #eeeeee;
}
#author {
font-size: 25vh;
color: #eeeeee;
}
#time {
position: absolute;
bottom: 0;
left: 0;
height: 3vh;
width: 0;
background: red;
transition: width 250ms ease-in-out;
}