-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
217 lines (183 loc) · 3.94 KB
/
style.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
body {
background-color: #F1F6F9;
font-family: "Poppins", sans-serif;
margin: 50px 50px 0 50px;
display: flex;
flex-direction: column;
min-height: 95vh;
}
/* Select the <h1> tag that contains the website title */
h1 {
/* Set the font family to Fira Sans */
font-family: 'Anton', sans-serif;
font-family: 'Fira Sans', sans-serif;
color: #F1F6F9;
background-color: #212A3E; /* Set the background color for the title */
text-align: center; /* Center the text within the title */
position: fixed;
width: 205px;
height: 60px;
top: 50px;
left: 17px;
position: fixed;
z-index: 1;
}
h1 a{
color: #F1F6F9;
text-decoration: none;
}
h1:visited {
color: #F1F6F9; /* Color after the link has been visited */
}
h1:hover {
color: #F1F6F9; /* Color on hover */
}
h1:active {
color: #F1F6F9;/* Color when the link is clicked/activated */
}
h3 a{
color: black;
text-decoration: none;
}
h3:hover {
color: black;/* Color when the link is clicked/activated */
}
h3:active {
color: black;/* Color when the link is clicked/activated */
text-decoration: none;
}
h3:visited {
color: black; /* Color after the link has been visited */
text-decoration: none;
}
h4 {
font-family: 'Anton', sans-serif;
font-family: 'Fira Sans', sans-serif;
color: #F1F6F9;
text-align: center; /* Center the text within the title */
position: fixed;
top: 87px;
left: 39px;
z-index: 1;
}
.menu a:link {
color: #F1F6F9;
text-decoration: none; /* Remove underline for unvisited links */
}
.menu a:visited {
color:#F1F6F9; /* Color for visited links */
text-decoration: none;
}
h3 a{
color:black;
}
.container{
display: flex;
align-items: left;
flex-direction:column;
left:0px;
position: relative;
}
.menu li a {
text-decoration: none; /* Remove default underline */
}
.menu li a:hover {
text-decoration: underline; /* Add underline on hover */
}
.menu li:not(:last-child) {
margin-right: 10px;
}
/* Set styles for the menu */
.menu {
left: 0;
background-color: #394867;
padding: 20px;
display: flex;
width: 150px;
position: fixed;
top:100px;
list-style-type: none;
display: flex;
flex-direction:column;
}
/* Set styles for the menu items */
.menu ul {
list-style-type: none;
padding: 0;
margin: 20;
display: inline-flex;
gap: 10px;
flex-direction: row;
}
.menu a {
text-decoration: none;
color:#F1F6F9;
}
/* Set styles for the content */
@media (min-width: 600px) {
.content {
margin-left: 200px; /* Adjust the value to match the menu width */
padding: 20px;
}
.content-wrapper {
margin-left: 200px;
padding: 20px;
}
}
@media (max-width: 600px) {
.menu {
position: fixed;
/* Adjust menu styles for mobile devices, e.g., position: fixed; */
}
.menu:hover{
z-index: 2;
}
.content-wrapper {
position: relative;
margin-top: 250px;
width: 100%;
z-index: 1;
/* Adjust content wrapper styles for mobile devices, e.g., position: relative; */
}
}
.content-wrapper img {
max-width: 100%;
height: auto;
}
.content-wrapper code {
max-width: 100%;
display: inline-block;
overflow-x: auto;
white-space: nowrap;
}
/* Set styles for the content blocks */
.content-block {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 0px;
}
#contact-form input,
#contact-form textarea,
#contact-form button {
display: block;
width: 100%;
margin-bottom: 20px;
font-family: "Poppins", sans-serif;
}
#contact-form button {
background-color: #394867;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
font-family: "Poppins", sans-serif;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding: 10px;
text-align: center;
}