phoenix/assets/base.css
2023-04-06 10:36:11 +05:00

49 lines
771 B
CSS

html,
body {
height: 100%;
}
body {
margin: 0;
background:
linear-gradient(0deg, #1d1926 19px, transparent 1px) center,
linear-gradient(90deg, #1d1926 19px, transparent 1px) center,
#7a7093;
background-size: 20px 20px;
font-family: sans-serif;
font-size: 16px;
color: white;
}
* {
box-sizing: border-box;
}
a {
color: inherit;
}
input,
button {
font-size: inherit;
font-family: inherit;
padding: 8px 10px;
outline: none;
background-color: #24272d;
color: white;
border: 2px solid gray;
border-radius: 5px;
transition: border-color 0.1s ease-in-out;
}
button {
cursor: pointer;
}
input:focus,
input:hover,
button:active,
button:hover {
border-color: #812abd;
}