2021-03-25 15:56:52 -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 {
|
|
|
|
font-family: sans-serif;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
|
|
|
background: #4FA2F5;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.header h1 {
|
|
|
|
font-size: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar {
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: #999;
|
|
|
|
}
|
|
|
|
.navbar a {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 20px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
/* .navbar a.right {
|
|
|
|
float: right;
|
|
|
|
} */
|
|
|
|
.navbar a:hover {
|
|
|
|
background-color: #ddd;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.side {
|
|
|
|
flex: 25%;
|
|
|
|
background-color: lightgray;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.main {
|
|
|
|
flex: 70%;
|
|
|
|
background-color: white;
|
|
|
|
padding: 20px;
|
|
|
|
max-width: 650px;
|
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
background: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
|
|
|
background-color: black;
|
|
|
|
color: lightgray;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #4da6ff;
|
|
|
|
}
|
|
|
|
.header {
|
|
|
|
background: #1A406B;
|
|
|
|
color: lightgray;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
.navbar a {
|
2021-03-25 16:08:45 -05:00
|
|
|
color: lightgray;
|
2021-03-25 15:56:52 -05:00
|
|
|
}
|
|
|
|
.navbar a:hover {
|
|
|
|
background-color: #444;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.side {
|
|
|
|
background-color: #111;
|
|
|
|
}
|
|
|
|
.main {
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
background: #222;
|
|
|
|
}
|
|
|
|
max-width: 650px;
|
|
|
|
}
|