-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (57 loc) · 892 Bytes
/
style.css
File metadata and controls
68 lines (57 loc) · 892 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
66
67
@import url('https://fonts.googleapis.com/css?family=Lato');
body{
background: url('./background.jpg') center no-repeat;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Lato', sans-serif;
color: #FAFAFA;
}
p{
text-align: center;
font-size: 14pt;
}
hr{
border-bottom: .4px solid #FAFAFA;
width: 80%;
}
a{
color: #FAFAFA;
}
h2{
margin-top: -2px;
}
.overlay{
background: rgba(0,0,0 ,0.5);
width: 100vw;
height: 100vh;
position: absolute;
top: 0;
bottom:0;
left: 0;
right: 0;
z-index: 0;
}
.icons{
width: 175px;
margin-top: 20px;
display: flex;
justify-content: space-between;
flex-direction: row;
}
.container{
position: fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 10;
width: 60vw;
}
.container p{
width: 70%;
}
.headshot{
width: 200px;
}