-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (93 loc) · 2.04 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
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap');
@font-face{
font-family: "Raleway";
src: url('https://fonts.googleapis.com/css?family=Raleway&display=swap');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Pacifico";
src: url('https://fonts.googleapis.com/css?family=Pacifico&display=swap');
font-weight: normal;
font-style: normal;
}
@font-face{
font-family: "Titillium Web";
src: url('https://fonts.googleapis.com/css?family=Titillium+Web&display=swap');
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
font-family: Raleway;
color: #777;
}
html, body{
margin: 0;
padding: 0;
}
ul{
margin: 0;
}
.nav li{
display: inline;
}
nav a{
display: inline-block;
padding: .5em;
color: white;
text-decoration: none;
}
.main-nav {
text-align: center;
font:1.1em;
font-weight: lighter;
border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.main-nav li{
padding: 0 5%;
}
.nav a:hover {
background-color: rgba(255, 255, 255, .3);
}
.main-header {
background-color: rgba(0,0,0,.6);
background-image: url("header.jpg");
background-size: cover;
background-blend-mode: multiply;
padding-bottom: 30px;
}
.your-name{
text-align: center;
margin: 0;
font-size: 4em;
font-family: "Pacifico";
font-weight: normal;
color: white;
}
.your-name-large{
font-size: 5em;
}
.content-section{
margin: 1em;
}
.container{
max-width: 900px;
margin: 0 auto;
padding: 0 1.5em;
}
.section-header{
font-family: "Titillium Web";
font-weight: normal;
color: #333;
text-align: center;
font-size: 2.5em;
}
.about-college-image{
float: left;
height: 400px;
width: 400px;
margin: 15px;
}