2018-10-31 16:03:29 +00:00
|
|
|
/*------- GLOBAL ------*/
|
|
|
|
|
2018-11-02 15:00:59 +00:00
|
|
|
header {
|
2018-11-05 10:08:00 +00:00
|
|
|
text-align:center;
|
2018-10-31 16:03:29 +00:00
|
|
|
}
|
|
|
|
|
2018-11-05 10:08:00 +00:00
|
|
|
span {
|
|
|
|
display:inline-block;
|
|
|
|
}
|
2018-11-02 15:00:59 +00:00
|
|
|
|
2018-11-05 20:03:04 +00:00
|
|
|
/*------- MENU ------*/
|
2018-10-31 16:03:29 +00:00
|
|
|
|
2018-11-05 20:03:04 +00:00
|
|
|
.menuDesktop {
|
|
|
|
background-color: #131313;
|
|
|
|
position: relative;
|
|
|
|
text-align: justify;
|
|
|
|
}
|
2018-10-31 16:03:29 +00:00
|
|
|
|
2018-11-05 20:03:04 +00:00
|
|
|
.boxTitle {
|
|
|
|
padding: .5em;
|
|
|
|
}
|
2018-10-31 16:03:29 +00:00
|
|
|
|
2018-11-05 20:03:04 +00:00
|
|
|
.title {
|
|
|
|
color: green;
|
|
|
|
padding: 20px 0px;
|
|
|
|
}
|
2018-10-31 16:03:29 +00:00
|
|
|
|
2018-11-05 20:03:04 +00:00
|
|
|
.boxItem {
|
|
|
|
position: absolute;
|
|
|
|
right: 1em;
|
|
|
|
top: 0;
|
|
|
|
height: calc(50px + 1em);
|
|
|
|
display: inline-table;
|
|
|
|
}
|
2018-10-31 16:03:29 +00:00
|
|
|
|
2018-11-06 08:27:15 +00:00
|
|
|
.boxItem {
|
|
|
|
div, code {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: middle;
|
|
|
|
color: #FFFFFF;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 20px;
|
|
|
|
padding: 0 5px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
/* TODO: if possible, insert a padding-top to move the submenu down such that
|
|
|
|
the text of the first element starts at the bottom border of the .menuDesktop
|
|
|
|
*/
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
list-style: none;
|
|
|
|
margin-left: -10px;
|
|
|
|
background-color: #131313;
|
|
|
|
width: CALC(100% + 20px);
|
|
|
|
|
|
|
|
li {
|
|
|
|
color: #FFFFFF;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li:hover {
|
|
|
|
color: #66aa66;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ul:hover {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
code{
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
div{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
div:hover{
|
|
|
|
color: #66aa66;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|