labolyon.fr/css/style.css

270 lines
3.9 KiB
CSS
Raw Normal View History

2023-06-13 17:21:54 +02:00
html {
font-family: 'arial', sans-serif;
font-weight: 400;
font-size: 1em;
color: #8a8683;
2023-06-13 17:21:54 +02:00
max-width: 100%;
overflow-x: hidden;
2023-06-13 17:35:55 +02:00
background: url("../images/world_network.muted.jpg");
background-color: black;
background-repeat: no-repeat;
background-size: 100% auto;
2023-06-13 17:21:54 +02:00
}
body {
width: 100%;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
2023-06-13 17:21:54 +02:00
/* global items */
img {
max-width: 100%;
}
2023-06-13 17:21:54 +02:00
a:link {
color: yellow;
text-decoration: none;
}
2023-06-13 17:21:54 +02:00
a:hover {
color: white;
background-color:black;
}
2023-06-13 17:21:54 +02:00
a:visited {
color:yellow;
}
2023-06-13 17:21:54 +02:00
/* Header */
2023-06-13 17:21:54 +02:00
#main-header {
display: flex;
flex-direction: row;
justify-content: start;
2023-06-13 18:21:47 +02:00
align-items: stretch;
2023-06-13 17:21:54 +02:00
gap: 15px;
padding: 10px;
2023-06-13 18:21:47 +02:00
position: relative;
margin-bottom: 25px;
}
#main-header::before {
content: "";
z-index: -1;
width: 100vw;
background: black;
height: 100%;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
}
2023-06-13 17:21:54 +02:00
#main-header > nav {
flex: 1;
2023-06-13 17:21:54 +02:00
display: flex;
flex-direction: row;
justify-content: end;
2023-06-13 18:21:47 +02:00
align-items: center;
}
2023-06-13 17:21:54 +02:00
@media screen and (max-width: 600px) {
#main-header {
flex-direction: column;
align-items: center;
}
#main-header > nav {
justify-content: center;
}
}
2023-06-13 17:21:54 +02:00
/* main area */
2023-06-10 22:24:21 +02:00
#homepage {
2023-06-13 17:21:54 +02:00
display: grid;
grid-template-columns: 1fr 400px;
grid-auto-rows: min-content;
gap: 5px;
}
2023-06-10 22:24:21 +02:00
#homepage > section {
2023-06-13 17:21:54 +02:00
padding: 0 10px;
}
2023-06-10 22:24:21 +02:00
#homepage aside {
2023-06-13 17:21:54 +02:00
padding: 10px;
}
2023-06-10 22:24:21 +02:00
#homepage .toolbar {
2023-06-13 17:21:54 +02:00
grid-column: 1 / 3;
padding: 0 10px;
text-align: right;
}
2023-06-13 17:21:54 +02:00
@media screen and (max-width: 889px){
2023-06-10 22:24:21 +02:00
#homepage {
2023-06-13 17:21:54 +02:00
grid-template-columns: 1fr;
}
2023-06-10 22:24:21 +02:00
#homepage > aside {
2023-06-13 17:21:54 +02:00
grid-row: 3;
}
2023-06-10 22:24:21 +02:00
#homepage .toolbar {
2023-06-13 17:21:54 +02:00
grid-row: 1;
}
}
2023-06-13 17:21:54 +02:00
/* toolbar */
2023-06-10 22:24:21 +02:00
#homepage .toolbar button {
2023-06-13 17:21:54 +02:00
border: none;
background: none;
color: white;
font-size: 1.5em;
cursor: pointer;
}
2023-06-10 22:24:21 +02:00
#homepage .toolbar button img {
2023-06-13 17:21:54 +02:00
height: 1em;
display: inline-block;
}
2023-06-10 22:24:21 +02:00
#homepage .toolbar button img[hidden] {
2023-06-13 17:21:54 +02:00
display: none;
}
2023-06-13 17:21:54 +02:00
/* description */
2023-06-13 17:21:54 +02:00
#description {
text-align: justify;
}
2023-06-13 17:21:54 +02:00
#description > *:first-child {
margin-top: 0;
}
2023-06-13 17:21:54 +02:00
.hackerspace-logo {
float: right;
width: 100px;
}
2023-06-13 17:21:54 +02:00
#description marquee {
height:25px;
max-width:400px;
background-color:none;
font-family:arial;
font-size:12pt;
color:#ffffff;
}
2023-06-13 17:21:54 +02:00
/* side */
2023-06-13 17:21:54 +02:00
#main-side h2 {
color: white;
font-size: 1em;
}
2023-06-13 17:21:54 +02:00
#main-side address {
display: inline;
}
2023-06-13 17:21:54 +02:00
#main-side .info > * {
margin: 1.33em 0;
font-weight: bold;
color: yellow;
}
2023-06-13 17:21:54 +02:00
@media screen and (max-width: 889px){
#main-side {
text-align: center;
}
}
2023-06-13 17:21:54 +02:00
/* background */
2023-06-13 17:35:55 +02:00
.fullscreen-background {
2023-06-13 17:21:54 +02:00
display: block !important;
position: absolute;
left: 0;
top: 0;
height: 100vh;
overflow: hidden;
z-index: -1;
width: 100%;
2023-06-13 17:35:55 +02:00
background: black;
}
2023-06-13 17:35:55 +02:00
.fullscreen-background img, .fullscreen-background video {
2023-06-13 17:21:54 +02:00
width: 100%;
height: 100%;
object-fit: cover;
}
2023-06-13 17:35:55 +02:00
.fullscreen-background video {
opacity: 0.3;
}
.fullscreen-background img {
2023-06-13 17:21:54 +02:00
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transition: linear 1s opacity;
}
2023-06-13 17:35:55 +02:00
.fullscreen-background img[hidden]{
2023-06-13 17:21:54 +02:00
display: block;
opacity: 0;
}
2023-06-13 17:21:54 +02:00
2023-06-13 17:35:55 +02:00
.fullscreen-background::after {
2023-06-13 17:21:54 +02:00
content: "";
width: 100%;
height: 25vh;
position: absolute;
bottom: 0;
left: 0;
background: linear-gradient(to top, black, rgba(0,0,0,0));
2023-06-10 22:24:21 +02:00
}
/* Status */
aside .status-container > * {
text-align: inherit;
}
.status-container > * {
text-align: center;
}
a.status-container > p {
text-align: inherit;
}
.status-container.opened strong {
color: green;
font-weight: bold;
}
.status-container.closed strong {
color: red;
font-weight: bold;
}
img.status-icon {
max-width: 125px;
display: block;
margin-left: auto;
margin-right: auto;
2023-06-13 17:21:54 +02:00
}