Navigation between admin/upload and project page

This commit is contained in:
2021-11-06 19:38:51 +01:00
parent cb8a609605
commit dd04e7ee17
18 changed files with 218 additions and 94 deletions

View File

@@ -70,11 +70,7 @@ textarea:focus, input:focus {
outline: 1px solid #CCC;
}
body {
overflow: hidden;
}
body, textarea, input, button {
body, textarea, input, button, a.button {
font-size: 14px;
font-family: 'Ubuntu', sans-serif;
margin: 0;
@@ -84,17 +80,35 @@ textarea {
resize: none;
}
button {
cursor: pointer;
font-weight: bold;
a.button {
text-decoration: none;
display: inline-block;
}
input, textarea, button {
button, a.button {
cursor: pointer;
font-weight: bold;
color: #000;
background: #eee;
&:hover {
color: #eee;
background: #000;
}
}
input, textarea, button, a.button {
border: none;
padding: 0.5em 1em;
border-radius: 3px;
}
h1 {
font-size: 2em;
font-weight: bold;
margin: 1em 0 0.5em;
}
/* Feedback */
.feedback {