-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
137 lines (118 loc) · 1.92 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
body {
background-color: #729f98;
text-align: left;
font-family: Montserrat, sans-serif;
font-weight: 100;
color: #f0eceb;
width: 100%;
position: absolute;
}
.logo{
float: left;
font-weight: 700;
font-size: 2.25em;
}
nav {
margin: -1em 0em 0em -0.5em;
padding: 0;
overflow: hidden;
background-color: #aa863a;
text-align: center;
line-height: 3;
position: fixed;
width: 100%;
}
nav ul{
list-style-type: none;
}
nav ul li{
list-style-type: none;
margin: 0;
padding: 0;
display: inline;
float: right;
}
nav ul li a {
text-align: center;
font-weight: 700;
padding: 14px 16px;
background-color: #aa863a;
}
nav ul li a: active {
background-color: #f0eceb;
}
a{
text-decoration: none;
list-style-type: none;
color: #f0eceb;
}
a:hover{
background-color: #283018;
color: #f0eceb;
opacity: 0.7;
cursor: pionter;
}
.jumbotron{
margin-top: 10%;
float: center;
}
#salutation {
text-transform: capitalize;
list-style-type: none;
padding-left: 0;
font-family: Montserrat, sans-serif;
font-weight: 700;
color: #f0eceb;
animation: bounceIn 2s;
}
/*Animation taken from https://robots.thoughtbot.com/css-animation-for-beginners*/
@keyframes bounceIn {
0% {
transform: scale(0.1);
opacity: 0;
}
60% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
}
}
aside{
float: left;
width: 30%;
margin: 0.5em 2em 13em 0em;
padding: 0em 2em 15em 0em;
z-index: 1;
}
.content{
padding: 0em 2em 0em 0em;
width: 78%;
z-index: 0;
}
h3{
padding-left: 1em;
}
p {
margin: 0 0 1.5em;
padding: 0;
line-height: 1.5;
}
footer{
background-color: #283018;
width: 100%;
margin: -1em 0em 0em -0.5em;
padding: 160px 0;
}
footer ul{
text-decoration: none;
text-align: center;
list-style-type: none;
}
footer ul li {
text-decoration: none;
text-align: center;
list-style-type: none;
padding-top: 18px 24px;
}