feat: Add login to layouts
- Add articles - Change order of articles - Add id attributes like in components - Add login example
This commit is contained in:
parent
a5bf80cb91
commit
6520cdbcf0
3 changed files with 91 additions and 47 deletions
28
source/style/modules/_login.scss
Normal file
28
source/style/modules/_login.scss
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
@use "sass:color";
|
||||
@use "../hippie-style/hippie";
|
||||
|
||||
form[name="login"] {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
& > div {
|
||||
padding: hippie.$space_double;
|
||||
background-color: color.adjust(hippie.basic_color(echo), $alpha: -0.4);
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
color: hippie.$color_brightest;
|
||||
}
|
||||
|
||||
& > input {
|
||||
display: block;
|
||||
width: 100%;
|
||||
margin-inline: 0;
|
||||
}
|
||||
|
||||
input:first-of-type {
|
||||
margin-bottom: hippie.$space_basic;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue