forked from rebillar/site-accueil-insa
54 lines
853 B
CSS
54 lines
853 B
CSS
|
|
body {
|
|
color: #b5b5b5;
|
|
}
|
|
|
|
.inner {
|
|
background-color: rgba(28, 28, 28, 0.2);
|
|
box-shadow: 0 0 50px #1c1c1c;
|
|
|
|
}
|
|
|
|
|
|
|
|
.team-button {
|
|
border-radius: 0.2rem;
|
|
font-size: 2.5rem;
|
|
font-family: Harry-P, fantasy;
|
|
cursor: pointer;
|
|
padding: 15px 20px;
|
|
margin: 10px;
|
|
transition: 0.2s;
|
|
border: none;
|
|
}
|
|
|
|
#title_boo {
|
|
color: #7cd43f;
|
|
}
|
|
|
|
#title_pek {
|
|
color: #9a89fd;
|
|
}
|
|
|
|
.team-button#buttonBoo {
|
|
color: #7cd43f;
|
|
background-color: #35621e;
|
|
}
|
|
|
|
.team-button#buttonPek {
|
|
color: #9a89fd;
|
|
background-color: #402559;
|
|
}
|
|
|
|
.team-button#buttonBoo:hover {
|
|
color: #35821e;
|
|
background-color: #7cf43f;
|
|
box-shadow: 0 0 10px #7c843f;
|
|
}
|
|
|
|
.team-button#buttonPek:hover {
|
|
color: #402559;
|
|
background-color: #aaa9fd;
|
|
box-shadow: 0 0 10px #9a89dd;
|
|
}
|
|
|