-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (95 loc) · 1.79 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
101
102
103
104
105
106
107
108
109
110
111
:root{
--light-gray: #ECEAEC;
--white: #F8F8F8;
--jet: #403B3A;
--blue-sapphire: #1c6e8cff;
--charcoal: #13202A;
}
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
body {
margin: 0;
font-family: "Roboto", sans-serif;
font-weight:300;
background-color: var(--light-gray);
}
.content {
background-color: var(--light-gray);
margin-left:auto;
margin-right:auto;
max-width:2000px;
margin-top:0px;
width:100%;
}
.center {
text-align:center!important;
position:relative;
}
.centered-text {
position: absolute;
width:100%;
top: 23%;
left: 50%;
transform: translate(-50%, -50%);
}
.navbar {
font-weight:200;
position:relative;
height:56px;
width:100%;
background-color: var(--jet);
z-index: 5;
}
.navlink {
position: relative;
float: left;
padding-left: 25px;
padding-right: 25px;
padding-top: 9px;
margin: none;
text-align:center;
min-height: 56px;
background-color: inherit;
color: var(--light-gray);
transition: color 0.2s;
transition: background 0.2s;
}
.navlink a{
position:relative;
color: inherit;
font-size: 29px;
text-decoration:none;
}
.navlink:hover{
background-color: var(--light-gray);
color: var(--jet);
}
.about {
padding: 0;
overflow-y: auto;
overflow-x: hidden;
}
.aboutimg{
position: relative;
display: inline;
float: right;
right:0;
width: 50%;
}
.fa {
color: var(--charcoal);
padding: 20px;
font-size: 60px;
width: 60px;
text-align: center;
text-decoration: none;
}
/* Add a hover effect if you want */
.fa:hover {
opacity: 0.7;
}
.link {
font-size:80px;
padding-left:20px;
text-decoration:none;
color:var(--charcoal);
}