2021-09-25 20:52:01 -05:00
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
.row {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (max-width: 400px) {
|
|
|
|
.navbar a {
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-09-26 19:17:09 -05:00
|
|
|
background-color: black;
|
2021-09-25 20:52:01 -05:00
|
|
|
font-family: sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
a {
|
2021-09-26 19:17:09 -05:00
|
|
|
color: #4da6ff;
|
2021-09-25 20:52:01 -05:00
|
|
|
}
|
|
|
|
blockquote {
|
2021-09-26 19:17:09 -05:00
|
|
|
border-left: 5px solid #222;
|
2021-09-25 20:52:01 -05:00
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
2021-09-26 19:17:09 -05:00
|
|
|
background: #1a406b;
|
|
|
|
color: lightgray;
|
2021-09-25 20:52:01 -05:00
|
|
|
}
|
|
|
|
.header h1 {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
overflow: hidden;
|
2021-09-26 19:17:09 -05:00
|
|
|
background-color: #222;
|
2021-09-25 20:52:01 -05:00
|
|
|
}
|
|
|
|
.navbar a {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
2021-09-26 19:17:09 -05:00
|
|
|
color: lightgray;
|
2021-09-25 20:52:01 -05:00
|
|
|
text-align: center;
|
|
|
|
padding: 14px 20px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.navbar a:hover {
|
2021-09-26 19:17:09 -05:00
|
|
|
background-color: #444;
|
|
|
|
color: white;
|
2021-09-25 20:52:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.row {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.side {
|
|
|
|
width: 20%;
|
2021-09-26 19:17:09 -05:00
|
|
|
background-color: #111;
|
|
|
|
color: lightgray;
|
2021-09-25 20:52:01 -05:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.main {
|
|
|
|
width: 80%;
|
2021-09-26 19:17:09 -05:00
|
|
|
background-color: black;
|
|
|
|
color: lightgray;
|
2021-09-25 20:52:01 -05:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
background: #ddd;
|
|
|
|
}
|