-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (94 loc) · 1.56 KB
/
styles.css
File metadata and controls
111 lines (94 loc) · 1.56 KB
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
* {
box-sizing: border-box;
}
html{
scroll-behavior: smooth;
}
body {
font-family: 'Quicksand', sans-serif;
margin: 0;
padding: 0;
}
h2,
h3 {
color: #0b770f;
}
footer {
padding: 20px;
color: white;
background-color: #0b770f;
text-align: center;
font-weight: bold;
}
nav a {
font-size: 18px;
font-weight: 400;
text-decoration: none;
color: white;
}
nav a:hover {
font-weight: bold;
}
.profile header {
text-align: center;
}
.featured-image {
width: 100%;
height: auto;
max-height: 700px;
object-fit: cover;
border-radius: 5px;
}
.profile img {
width: 200px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius: 5px;
padding: 20px;
margin-top: 20px;
}
.jumbotron {
font-size: 20px;
padding: 60px;
max-height: 2000px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
text-align: center;
color: white;
}
nav li {
display: inline;
list-style-type: none;
margin-right: 20px;
}
nav {
background-color: #0b770f;
padding: 5px;
position: sticky;
top: 0;
}
main {
padding: 20px;
overflow: auto;
}
#content {
float: left;
width: 75%;
}
aside {
float: right;
width: 25%;
padding-left: 20px;
}
header {
display: inline;
}
@media screen and (max-width: 1000px) {
#content,
aside {
width: 100%;
padding: 0;
}
}