-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
62 lines (57 loc) · 1.02 KB
/
about.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
@import url('https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
background-color: #ACC8E5;
color: #112A46;
}
nav{
font-size: 150%;
padding-top: 2em;
}
ul.nav{
margin-top: 1em;
}
#navbar-brand{
max-width: 20%;
max-height: 20%;
}
.bg-custom {
background-color: #ACC8E5 !important;
}
@media (max-width: 768px) {
.navbar-nav {
flex-direction: row !important;
}
.navbar-nav .nav-item {
margin-right: 10px;
padding: .25em;
}
}
.about{
margin: auto;
}
.about_me_p {
margin-top: 15%;
font-size: 2em;
color: #112A46;
font-weight: 500;
max-height: 100px;
text-align: center;
}
.interests{
text-align: center;
}
.dropdown-menu{
background-color: #E4E3EF;
}
footer{
margin-top: 19%;
}