-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
40 lines (34 loc) · 702 Bytes
/
main.css
File metadata and controls
40 lines (34 loc) · 702 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300&display=swap');
html {
font-size: 19px;
font-family: 'Source Sans Pro', sans-serif;
}
.nav-link {
background-color: inherit;
border-radius: 10px;
transition: background-color 500ms;
padding: 15px 20px;
margin-left: 20px;
margin-right: 20px;
}
img {
border-radius: 10px;
.main-image {
margin-bottom: 75px;
box-shadow: 0px 15px 22px 0px var(--main-color);
}
/*needed to change thing to restart deployment*/
p {
font-size: 1rem;
}
.container {
overflow: hidden;
position: relative;
}
.container::before {
content: '\00a0';
}
body {
margin: 5px;
padding: 5px;
}