80 lines
1.2 KiB
CSS
Executable File
80 lines
1.2 KiB
CSS
Executable File
:root {
|
|
--main-color: #333534;
|
|
--text-color: #bfbfbf;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
color: var(--text-color);
|
|
background: black;
|
|
font-family: 'Futura-Medium', 'Futura', 'Trebuchet MS', sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
}
|
|
|
|
.titreBillet {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
#global {
|
|
min-height: 100%;
|
|
/* Voir commentaire sur html et body plus haut */
|
|
background: var(--main-color);
|
|
width: 70%;
|
|
margin: auto;
|
|
/* Permet de centrer la div */
|
|
text-align: justify;
|
|
padding: 5px 20px;
|
|
}
|
|
|
|
#contenu {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
#titreBlog,
|
|
#piedBlog {
|
|
text-align: center;
|
|
}
|
|
|
|
#titreReponses {
|
|
font-size: 100%;
|
|
}
|
|
|
|
#txtCommentaire {
|
|
width: 50%;
|
|
}
|
|
|
|
#titreReponses {
|
|
font-size: 100%;
|
|
}
|
|
|
|
#txtCommentaire {
|
|
width: 50%;
|
|
}
|
|
|
|
#organizer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
a#logout-button {
|
|
text-decoration: none;
|
|
color: white;
|
|
background-color: var(--main-color);
|
|
padding: 5px 10px;
|
|
border: 1px solid #fff;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
&:hover {
|
|
background-color: #fff;
|
|
color: var(--main-color);
|
|
}
|
|
} |