-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
100 lines (84 loc) · 1.62 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300&display=swap');
:root {
--main-bg-color: #E6E6E6;
--main-font-color: black;
--main-font-family:oxygen;
--navbar-base-color: black;
--navbar-font-color: white;
--navbar-font-family: oxygen;
--component-bg-color: grey;
--component-font-color: oxygen;
}
@media (max-width: 800px) {
:root {
--main-font-color: grey;
}
}
#navbar {
display:flex;
flex-direction: row;
justify-content: flex-end;
height: 60px;
width: 100vw;
background-color:var(--navbar-base-color);
color:var(--navbar-font-color);
position:fixed;
top:0px;
left:0px;
font-family: var(--main-font-family)
}
#navlinks {
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#navlinks a{
text-decoration: none;
color:var(--navbar-font-color);
font-family:var(--navbar-font-family);
font-size: 18px;
margin-right: 15px;
padding: 15px 10px 15px 10px;
border-radius: 2px;
}
#navlinks a:hover {
@extend #navlinks a;
background-color: grey;
opacity: 0.8 ;
}
body {
/*padding-top: 60px;*/
background-color: var(--main-bg-color)
}
#welcome-section {
display:flex;
flex-direction:row;
align-items:center;
justify-content:center;
font-family:var(--main-font-family), sans-serif;
height:100vh;
}
#display-pic {
width: 300px;
height: 300px;
overflow: hidden;
border-radius:50%;
}
#display-pic img {
height: 300px;
margin: 0 0 0 0px;
}
#bio {
width: 500px;
}
#bio p {
line-height: 25px;
}
b {
font-weight: 900;
}
#links {
display: flex;
flex-direction: column;
}