-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (61 loc) · 1009 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
h1, h2, h3, h4 {
font-family: 'Open Sans', sans-serif;
}
body {
font-family: 'Open Sans', sans-serif;
}
#header {
z-index: 100;
overflow: hidden;
position: fixed;
width: 100%;
top: 0;
background: #DF0101;
box-shadow: 2px 2px 10px
}
.navbar{
display: flex;
flex: 1;
justify-content: center;
overflow: hidden;
margin-bottom: none;
border-style: double;
border-left: none;
border-right: none;
padding-left: 10px;
padding-right: 10px;
background: black;
font-size: 32px;
}
.navbar > a {
color: white;
font-weight: bold;
margin-left: 10px;
margin-right: 10px;
}
.navbar a:hover {
display:flex;
background-color: grey;
color: yellow;
transition: 1s;
font-size: 32px;
}
.main {
margin-top: 250px;
}
.home-callout {
overflow: hidden;
color: white;
background: #DF0101;
}
.profile-body {
padding-top: 20px;
font-family: 'Open Sans', sans-serif;
}
.resume-border {
border-style: solid;
}
.nopadding {
padding: 0;
margin: 0;
}