45 lines
650 B
CSS
45 lines
650 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-black;
|
|
}
|
|
|
|
.button {
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 0 0 black;
|
|
transition: all .3s;
|
|
border: 8px black solid;
|
|
line-height: 100%;
|
|
border-width: 2px;
|
|
border-radius: 100px;
|
|
cursor: pointer;
|
|
color: black;
|
|
font-size: 26px;
|
|
background-color: #ffffff59;
|
|
height: 40px;
|
|
width: 40px;
|
|
|
|
@media (min-width: 780px) {
|
|
height: 70px;
|
|
width: 70px;
|
|
}
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #fdec50ff;
|
|
}
|
|
|
|
.button:active {
|
|
box-shadow: 0 0 0 0 black;
|
|
}
|
|
|
|
.button--screened {
|
|
top: 74px;
|
|
}
|
|
|
|
.compilation {
|
|
cursor: pointer;
|
|
max-width: 420px;
|
|
} |