Files
site-interpromo-2024/Front/MainCSS.css

75 lines
1.2 KiB
CSS

/*
This CSS contains settings shared beetween all pages (notably the header's).
*/
html {
height:100%;
}
header {
background-color: #ff1f1f;
position: fixed;
top: 0;
left: 0;
right: 0;
display:flex;
/* nav */
order: 2;
overflow:inherit;
background-color: #212529;
align-self:center;
align-items: center;
flex-wrap: wrap;
/* inherited from navbar */
padding: 0px 0px 0px 0px;
margin: 0px;
/*text-align: center;*/
/* display:inline-block; */
/*vertical-align:top;*/
}
header nobr {
color: white;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
list-style: none;
padding: 0;
margin: 0;
align-self:center;
list-style-type: none;
padding: 10px;
height: 24px;
margin-top: 4px;
margin-bottom: 4px;
display: inline;
}
header nobr a, header nobr div button {
padding: 20px 20px 20px 20px;
color: white;
font-size: 16px;
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
text-decoration: none;
line-height: 0px;
padding: 5px 12px;
}
header nobr a:hover {
background-color: #4e5256;
}
body {
background-color: #101214;
height:100%;
position: relative;
padding-bottom: 100px;
}