You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
882 B
46 lines
882 B
@import url(../theme/dark.css);
|
|
@import url(personnal_space.css);
|
|
@import url(side_menu.css);
|
|
@import url(../template/header.css);
|
|
|
|
body {
|
|
/* background-color: #303030; */
|
|
}
|
|
#main {
|
|
/* margin-left : 10%;
|
|
margin-right: 10%; */
|
|
/* border : solid 1px #303030; */
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: var(--font-content);
|
|
height: 100%;
|
|
}
|
|
|
|
#body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
margin: 0px;
|
|
height: 100%;
|
|
background-color: var(--second-color);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.data {
|
|
border: 1.5px solid var(--main-contrast-color);
|
|
background-color: var(--main-color);
|
|
border-radius: 0.75cap;
|
|
color: var(--main-contrast-color);
|
|
position: relative;
|
|
}
|
|
|
|
.data:hover {
|
|
border-color: var(--accent-color);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.set-button {
|
|
width: 80%;
|
|
margin-left: 5%;
|
|
margin-top: 5%;
|
|
}
|