neutral/public/stylesheets/style.css

88 lines
1.2 KiB
CSS
Raw Normal View History

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
padding: 2%;
background-color: #323031;
color: white;
font-size: 1vw;
font-family: 'Roboto', sans-serif !important;
}
/*Button*/
.btn {
background-color: transparent;
outline: none;
border-radius: 0.5vw;
border: 1px solid currentColor;
color: currentColor;
padding: 0.5vw;
transition: 0.2s;
}
.btn span {
transition: 0.2s;
}
.btn:hover {
box-shadow: 0px 0px 10px currentColor;
background-color: currentColor;
}
.btn:hover span {
color: black
}
.btn:active {
box-shadow: 0px 0px 10px currentColor;
background-color: transparent;
}
.btn:active span {
color: white
}
/* Miniaturiez Button */
.min {
width: 2vw !important;
height: 2vw !important;
border-radius: 100% !important;
font-size: 1vw !important;
display: flex;
justify-content: center;
align-items: center;
transition: 0.2s;
}
/*Colors*/
.red {
color: rgb(255, 63, 63) !important;
}
.blue {
color: rgb(66, 242, 255) !important;
}
.yellow {
color: rgb(255, 255, 27) !important;
}
.green {
color: rgb(64, 248, 64) !important;
}