DAVIAC-web/style.css

115 lines
1.7 KiB
CSS
Raw Permalink Normal View History

.header { grid-area: header; }
2024-02-11 21:44:59 +11:00
.sidebar { grid-area: sidebar;
2024-02-11 21:57:27 +11:00
padding: 15px;
2024-02-14 15:39:57 +11:00
margin-right: 15px;
border-radius: 15px; }
.main { grid-area: main;
width: 100%; }
img { width: 100%; }
}
.footer { grid-area: footer; }
2024-02-10 19:50:03 +11:00
.grid-container {
display: grid;
grid-template-areas:
'header header header header'
'sidebar main main main'
'sidebar footer footer footer';
2024-02-10 19:50:03 +11:00
gap: 10px;
padding: 10px;
grid-template-columns: 400px 1fr;
2024-02-10 18:35:35 +11:00
}
2024-02-11 21:35:11 +11:00
.shown-mobile {
display: none;
}
.hidden-mobile {
display: content;
}
2024-02-11 20:28:28 +11:00
@media only screen and (max-width: 620px) {
/* Mobile screens */
.grid-container {
display: grid;
grid-template-areas:
'header'
'sidebar'
2024-02-11 20:28:28 +11:00
'main'
'footer';
gap: 1px;
padding:1px;
grid-template-columns: unset;
2024-02-11 20:28:28 +11:00
}
.header, main, .footer {
2024-02-11 20:28:28 +11:00
width: 100%;
}
.sidebar {
2024-02-11 21:44:59 +11:00
width: unset;
margin-right: unset;
2024-02-11 21:57:27 +11:00
padding: 1px;
2024-02-14 15:39:57 +11:00
border-radius: 5px;
2024-02-11 21:57:27 +11:00
* { margin: 1px };
2024-02-11 21:35:11 +11:00
ul {
padding: 1px;
}
li {
display: inline list-item;
2024-02-12 09:15:15 +11:00
font-size: 0.75rem;
2024-02-11 21:35:11 +11:00
}
}
h1 { font-size: 1.5rem; }
h2 { font-size: 1.0rem; }
h3 { font-size: 0.75rem; }
p { font-size: 0.75rem; }
2024-02-12 09:15:15 +11:00
* {
margin: 2px;
}
2024-02-11 21:35:11 +11:00
.hidden-mobile {
2024-02-12 09:15:15 +11:00
display: none;
2024-02-11 21:35:11 +11:00
}
.shown-mobile {
2024-02-12 09:15:15 +11:00
display: contents;
2024-02-11 20:30:43 +11:00
}
2024-02-11 20:28:28 +11:00
}
2024-02-10 17:57:43 +11:00
#background {
background: none repeat scroll 0 0;
background-color: #DADADA;
width: 90%;
2024-02-10 18:09:58 +11:00
height: 80%;
2024-02-10 17:57:43 +11:00
margin: auto;
border-radius: 15px;
padding: 10px;
2024-02-11 20:28:28 +11:00
overflow: auto;
2024-02-10 17:57:43 +11:00
}
#sidebar {
2024-02-10 18:09:58 +11:00
float: left;
2024-02-10 17:57:43 +11:00
background-color:#A0A0A0;
}
#footer {
2024-02-10 18:35:35 +11:00
padding-top: 20px;
2024-02-10 17:57:43 +11:00
clear: both;
}
2024-02-25 16:40:12 +11:00
.update {
float: inline-start;
}
.counter {
float: inline-end;
}
2024-02-10 17:57:43 +11:00
#footer p {
font-size: 10px;
}
2024-02-25 16:40:12 +11:00
2024-02-10 17:57:43 +11:00
img {
border: none;
}