63 lines
899 B
CSS
63 lines
899 B
CSS
@font-face {
|
|
font-family: MartinHand;
|
|
src: url('/static/fonts/Martinhand3.ttf');
|
|
}
|
|
|
|
:root {
|
|
--primary: #485fc7;
|
|
}
|
|
|
|
.fancy {
|
|
font-family: MartinHand;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.has-text-shadow {
|
|
text-shadow: 1px 1px 2px #000;
|
|
}
|
|
|
|
.is-form-group {
|
|
max-width: 600px;
|
|
align-self: center;
|
|
}
|
|
|
|
.is-centered {
|
|
margin: auto;
|
|
}
|
|
|
|
.is-action {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.menu-label {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.button.is-primary, .button.is-primary:hover {
|
|
background-color: var(--primary);
|
|
}
|
|
|
|
A.admin-link:after {
|
|
content: "*";
|
|
}
|
|
|
|
TEXTAREA.input {
|
|
height: 400px;
|
|
}
|
|
|
|
.control INPUT[type='file'] {
|
|
border: none;
|
|
width: 80%;
|
|
text-align: center;
|
|
margin: auto 10%;
|
|
}
|
|
|
|
.project-footer {
|
|
position: fixed;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
background-color: #EEE;
|
|
padding: 10px 10px;
|
|
margin-top: 30px;
|
|
border-top-left-radius: 6px;
|
|
} |