mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-29 12:32:09 +01:00
58 lines
1.1 KiB
CSS
58 lines
1.1 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
*{
|
|
font-family: 'Roboto', sans-serif;
|
|
color: white;
|
|
}
|
|
|
|
|
|
|
|
.nav-link{
|
|
font-weight: bold;
|
|
font-size: 13pt;
|
|
transition: 0.1s;
|
|
transition-timing-function: linear;
|
|
letter-spacing: 2px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.nav-link:hover{
|
|
color:rgb(21, 200, 132) !important;
|
|
}
|
|
|
|
.current{
|
|
color:rgb(21, 200, 132) !important;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.list-group-item{
|
|
background-color: rgb(32, 102, 99);
|
|
color: white;
|
|
font-size: 13pt;
|
|
transition: 0.1s;
|
|
transition-timing-function: linear;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.list-group-item:hover{
|
|
color: white;
|
|
letter-spacing: 5px;
|
|
background-color: rgb(36, 126, 121);
|
|
}
|
|
.form-dark{
|
|
color:white !important;
|
|
}
|
|
.form-dark input,textarea{
|
|
background-color: rgba(255, 255, 255, 0.089) !important;
|
|
color:white !important;
|
|
border: 2px solid rgb(27, 41, 35) !important;
|
|
}
|
|
|
|
.form-dark input:hover,textarea:hover{
|
|
border: 2px solid rgb(61, 138, 102) !important;
|
|
}
|
|
|
|
.form-dark input:focus,textarea:focus{
|
|
border: 2px solid rgb(61, 138, 102) !important;
|
|
}
|
|
|