forked from rebillar/site-accueil-insa
222 lines
2.9 KiB
CSS
222 lines
2.9 KiB
CSS
.admin-container {
|
|
border: 1px solid #5a5a5a;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
|
|
.edit-header .stat-log {
|
|
width: 70%;
|
|
}
|
|
|
|
.stat-points {
|
|
width: 20%;
|
|
}
|
|
|
|
.edit-header .stat-points {
|
|
width: 20%;
|
|
}
|
|
|
|
.edit-button-container {
|
|
border: none;
|
|
margin: 10px;
|
|
}
|
|
|
|
.edit-header {
|
|
display: flex;
|
|
text-align: center;
|
|
background-color: #61605e;
|
|
color: #fefefe;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.edit-header .stat-trash {
|
|
margin: auto;
|
|
}
|
|
|
|
.edit-text {
|
|
width: 70%;
|
|
}
|
|
|
|
.edit-points{
|
|
width: 20%;
|
|
}
|
|
|
|
|
|
.buttons-container {
|
|
display: inline-flex;
|
|
}
|
|
|
|
.admin-back-button {
|
|
width: auto;
|
|
background: #fafafa;
|
|
color: #000;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
margin: 5px;
|
|
box-shadow: 0 0 5px #000000;
|
|
}
|
|
|
|
.admin-back-button:hover {
|
|
color: #fafafa;
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
.website-back-button {
|
|
width: auto;
|
|
background: #fafafa;
|
|
color: #000;
|
|
border-radius: 5px;
|
|
padding: 15px;
|
|
margin: 5px;
|
|
box-shadow: 0 0 5px #000000;
|
|
}
|
|
|
|
.website-back-button:hover {
|
|
color: #fafafa;
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
|
|
.edit-stats {
|
|
width: 100%;
|
|
}
|
|
|
|
input, textarea {
|
|
text-align: center;
|
|
background: #484848;
|
|
color: #fafafa;
|
|
width: 100%;
|
|
border: none;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.remove-line {
|
|
color: #ff1200;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.remove-line svg {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.remove-line:hover {
|
|
color: #ff5e00;
|
|
text-shadow: 0 0 5px #ff4000;
|
|
}
|
|
|
|
.add-line{
|
|
font-size: 30px;
|
|
background: #ab1d00;
|
|
color: #fafafa;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
margin: 30px 0 20px 0;
|
|
}
|
|
|
|
#addLine_gli {
|
|
background: #ff5f5f;
|
|
}
|
|
|
|
#addLine_pek {
|
|
background: #7ffd78;
|
|
}
|
|
|
|
#addLine_boo {
|
|
background: #fafd78;
|
|
}
|
|
|
|
#addLine_ver {
|
|
background: #60bdff;
|
|
}
|
|
|
|
|
|
#editHeader_gli {
|
|
background: #9c1a00;
|
|
}
|
|
|
|
#editHeader_pek {
|
|
background: #138a14;
|
|
}
|
|
|
|
#editHeader_boo {
|
|
background: #6b5300;
|
|
}
|
|
|
|
#editHeader_ver {
|
|
background: #264565;
|
|
}
|
|
|
|
|
|
.save {
|
|
background: #21aa08;
|
|
font-size: 30px;
|
|
color: #fafafa;
|
|
cursor: pointer;
|
|
transition: 0.3s;
|
|
margin: 40px 0 0 0;
|
|
width: 100%;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.save:hover {
|
|
background: #2ce20b;
|
|
box-shadow: 0 0 5px #2ce20b;
|
|
}
|
|
|
|
#activityTable {
|
|
width: 100%;
|
|
}
|
|
|
|
#activityTable tr {
|
|
transition: 0.2s;
|
|
}
|
|
|
|
#activityTable tr:hover {
|
|
cursor: pointer;
|
|
background-color: #62010e;
|
|
}
|
|
|
|
|
|
.planning-start {
|
|
width: 10%;
|
|
}
|
|
.planning-length {
|
|
width: 10%;
|
|
}
|
|
.planning-name {
|
|
width: 70%;
|
|
}
|
|
.planning-trash {
|
|
width: 10%;
|
|
}
|
|
|
|
#noUpdateNeeded {
|
|
font-size: 2rem;
|
|
color: #2ce20b;
|
|
}
|
|
|
|
#UpdateNeeded {
|
|
font-size: 2rem;
|
|
color: #c53422;
|
|
}
|
|
|
|
#gitButton {
|
|
font-size: 1.5rem;
|
|
display: flex;
|
|
margin: 20px;
|
|
}
|
|
|
|
|
|
#gitButton a {
|
|
padding: 10px;
|
|
background-color: white;
|
|
color: #052700;
|
|
margin: auto;
|
|
width: 200px;
|
|
cursor: pointer;
|
|
border-radius: 0.5rem;
|
|
}
|