ad3a8b92d1
* Start to update the theme - Ligther colors - No more border radius - Buttons are now always colored - Start to redesign the post page (according to the Figma mockups) * Fix build script: it now recompiles everytime a scss file changed * Make sure the article illustrations are not too big * Make articles wider (70 characters) * Better contrast between gray shades * Various improvements * Better mobile style * New style for the footer * Improve comment style * Better responsiveness again * Limit the size of the article cover * Last details? - Improve buttons on the media page - Improve lists * Pin the stdweb version that we use It changed because I removed Cargo.lock to handle a merge conflict I could have updated cargo web too, but it mean I should have re-built the CI docker image and it was taking forever. * Better contrast for links in the header of the article * Add a basic privacy policy * Remove "also" * Fix a few issues - Don't watch static/css in build.rs - Another shade of white - Remove useless margin rule for error messages
165 lines
2.6 KiB
SCSS
165 lines
2.6 KiB
SCSS
label {
|
|
display: block;
|
|
margin: 2em auto .5em;
|
|
font-size: 1.2em;
|
|
}
|
|
input, textarea, select {
|
|
transition: all 0.1s ease-in;
|
|
display: block;
|
|
width: 100%;
|
|
margin: auto;
|
|
padding: 1em;
|
|
box-sizing: border-box;
|
|
-webkit-appearance: textarea;
|
|
|
|
background: $form-input-background;
|
|
color: $black;
|
|
border: solid $black thin;
|
|
|
|
font-size: 1.2em;
|
|
font-weight: 400;
|
|
|
|
&:focus {
|
|
border-color: $purple;
|
|
}
|
|
}
|
|
form input[type="submit"] {
|
|
margin: 2em auto;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
|
|
font-family: $lora;
|
|
font-size: 1.1em;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
display: inline;
|
|
margin: initial;
|
|
min-width: initial;
|
|
width: initial;
|
|
-webkit-appearance: checkbox;
|
|
}
|
|
|
|
/** Inline forms (containing only CSRF token and a <submit>, for protected links) **/
|
|
|
|
form.inline {
|
|
display: inline;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: auto;
|
|
|
|
input[type="submit"] {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
font-size: 1em;
|
|
width: auto;
|
|
-webkit-appearance: none;
|
|
|
|
&:not(.button) {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
color: $purple;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
|
|
.button, .button:visited, input[type="submit"], input[type="submit"].button {
|
|
transition: all 0.1s ease-in;
|
|
display: inline-block;
|
|
-webkit-appearance: none;
|
|
|
|
margin: 0.5em auto;
|
|
padding: 0.75em 1em;
|
|
|
|
background: $purple;
|
|
color: $white;
|
|
font-weight: bold;
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: transparentize($purple, 0.1);
|
|
}
|
|
|
|
&.destructive {
|
|
background: $red;
|
|
|
|
&:hover {
|
|
background: transparentize($red, 0.1);
|
|
}
|
|
}
|
|
|
|
&.secondary {
|
|
background: $gray;
|
|
color: $black;
|
|
|
|
&:hover {
|
|
background: transparentize($black, 0.9);
|
|
}
|
|
}
|
|
}
|
|
input[type="submit"] {
|
|
display: block;
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
// Writing page
|
|
form.new-post {
|
|
max-width: 60em;
|
|
.title {
|
|
margin: 0 auto;
|
|
padding: 0.75em 0;
|
|
|
|
background: none;
|
|
border: none;
|
|
|
|
font-family: $playfair;
|
|
font-size: 2em;
|
|
text-align: left;
|
|
}
|
|
textarea {
|
|
min-height: 20em;
|
|
overflow-y: hidden;
|
|
resize: none;
|
|
-webkit-appearance: textarea;
|
|
}
|
|
}
|
|
|
|
.button + .button {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.split {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
|
|
& > * {
|
|
flex-grow: 1;
|
|
max-width: 40%;
|
|
}
|
|
}
|
|
|
|
header.center {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: transparent;
|
|
opacity: 1;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
|
|
> * {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|