-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 lines (87 loc) · 1.42 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
body {
background-color:lightblue;
font-family:'Raleway', sans-serif;
}
nav {
background-color: gray;
position: fixed;
top: 0;
left: 0;
height: 50px;
width: 100vw;
z-index: 1;
}
nav ul li {
float: right;
margin-right: 50px;
list-style-type: none;
text-align: center;
}
#brand {
float: left;
}
.nav-link {
color:darkred;
text-decoration: none;
font-family: 'Acme', sans-serif;
}
.nav-link:hover {
color: lightblue;
font-weight: bold;
}
#brand .nav-link {
color: lightblue;
font-size: 14pt;
}
#brand .nav-link:hover {
color:darkred;
}
h1 {
font-size:60pt;
font-family:'Acme', sans-serif;
}
#home {
margin-top: 50px;
position: relative;
left: -8px;
width: 100vw;
height: 30vh;
padding-top: 3em;
background: url('https://images.pexels.com/photos/326311/pexels-photo-326311.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940') center 75% no-repeat fixed;
background-size: cover;
}
.header-tag {
text-align: center;
color: darkred;
text-shadow: 2px 2px 2px black;
}
h3.header-tag {
margin-top: -30px;
font-size: 18pt;
}
h2 {
font-family:'Acme', sans-serif;
color: darkred;
}
.main {
text-align: center;
}
#about {
margin-top: 50px;
display: inline-block;
}
#about-picture {
width: 30vw;
float: left;
}
#profile-pic {
height: 300px;
width:400px;
object-fit:cover;
border-radius: 0.4em;
box-shadow: 2px 2px 2px black
}
#about-content {
width: 40vw;
float: right;
}