forked from hack4impact-calpoly/bootcamp-project-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
123 lines (105 loc) · 1.75 KB
/
styles.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
html {
height: 100%;
font-family: Nunito, sans-serif;
}
body {
background-color: rgba(55, 173, 189, 0.265);
position: relative;
min-height: 100vh;
padding: 0;
margin: 0;
}
main {
padding: 0 20px 40px 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
div.about-text {
font-size: 1.1em;
text-align: center;
}
.about,
.about-image img {
display: flex;
flex-direction: column;
align-items: center;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
font-size: 16px;
resize: none;
}
.navbar {
position: -webkit-sticky;
position: sticky;
top: 0;
width: 100%;
height: 7%;
z-index: 10;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
background-color: rgb(26, 124, 137);
color: white;
padding: 0px 0px;
}
.nav-list {
display: flex;
flex-direction: row;
position: relative;
right: 30px;
list-style: none;
}
.navbar a {
color: white;
font-weight: bold;
margin: 0 12px;
text-decoration: none;
letter-spacing: 2px;
}
.nav-list a:hover {
color: rgb(245, 192, 32);
text-decoration: underline;
}
.nav-list a:active {
color: rgb(245, 192, 32);
}
.footer {
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(26, 124, 137);
color: white;
position: absolute;
bottom: 0;
width: 100%;
height: 2.5rem;
}
.blog-post img {
width: 100%;
max-width: 500px;
height: auto;
display: block;
margin-bottom: 20px;
}
.blog-post {
margin-bottom: 40px;
}
.blog-post:last-child {
margin-bottom: 40px;
}
#blog-container {
margin-bottom: 40px;
}