-
Notifications
You must be signed in to change notification settings - Fork 37
/
about.css
75 lines (74 loc) · 1.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
.about {
width: 100%;
min-height: inherit;
display: flex;
justify-content: center;
align-items: center;
}
main {
background-color: #ffffff;
width: 75%;
height: 100%;
padding: 3rem;
padding-top: 2rem;
padding-right: 2rem;
border-radius: 12px;
margin-bottom: 20px;
backdrop-filter: blur(8px);
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.heading {
font-size: 40px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
.aboutinfo {
font-size: 18px;
font-family: cursive;
font-style: italic;
}
.navbar-brand {
font-family: "Young Serif", serif;
font-size: 5vh !important;
color: black !important;
}
.navbar-nav {
color: black;
display: flex;
width: 100%;
justify-content: end;
}
.navbar {
color: black;
padding: 1vh 1vw;
}
header {
padding: 20px;
}
main {
margin: 70px;
}
nav {
display: flex;
justify-content: space-evenly;
}
/* Styles for phones and smaller screens */
@media (max-width: 768px) {
.about {
display: flex;
margin: 40px 0px;
}
main {
width: 90%;
margin: 10px;
}
.heading {
font-size: 30px;
}
.navbar-brand {
font-size: 3vh !important;
}
.navbar-nav {
flex-direction: column;
}
}