feat(landing): trailer and articles section
This commit is contained in:
parent
70a8884495
commit
d5d67f7069
22 changed files with 942 additions and 165 deletions
23
assets/sass/alert.scss
Normal file
23
assets/sass/alert.scss
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
.alert {
|
||||
border: 2px solid $accent;
|
||||
background-color: darken($accent, 10%);
|
||||
color: white;
|
||||
border-radius: 3px;
|
||||
padding: 1rem 2rem;
|
||||
margin: 1rem 0;
|
||||
|
||||
width: 100%;
|
||||
|
||||
.alert-split-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $md-breakpoint) {
|
||||
.alert {
|
||||
.alert-split-content {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue