phoenix/assets/css/base.css
Ivan R. 6396c160f2
feat: export and import
The list of links can now be exported to a json file,
and later imported back.
2024-04-01 23:35:46 +05:00

63 lines
978 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-size: 16px;
color: white;
}
* {
box-sizing: border-box;
}
input,
button,
textarea {
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;
}
textarea {
resize: vertical;
}
input:focus,
input:hover,
button:active,
button:hover,
button:focus,
textarea:focus,
textarea:hover {
border-color: #812abd;
}
a {
color: inherit;
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-thickness: 2px;
text-decoration-color: #812abd;
}