Skip to content

Commit

Permalink
Create initial domain CSS styles
Browse files Browse the repository at this point in the history
Co-authored-by: Anna Bargiel <[email protected]>
  • Loading branch information
torrocus and ania-hm committed Dec 6, 2024
1 parent c248924 commit 5cbb3f8
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/assets/stylesheets/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
@import 'common';
@import 'community';
@import 'contact_forms';
@import 'domain';
@import 'fonts';
@import 'footer';
@import 'header';
Expand Down
51 changes: 51 additions & 0 deletions app/assets/stylesheets/domain.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
@import 'variables';
@import 'mixins';

body.domain {

.logotype {
&:hover {
filter: brightness(120%);
}
}

.domain-item {
background-color: $light-background-color;
color: $grey-text-color;

margin-top: -250px;
@include vertical-padding(20px);
text-align: center;

blockquote p {
font-size: 20pt;
margin-bottom: 48px;
}

h1 {
font-family: "Asap", Helvetica, sans-serif;
font-weight: 700;
margin-bottom: 100px;
margin-top: 100px;
text-transform: uppercase;
text-align: center;
}


p {
font-size: 16pt;
text-align: justify;
}

img {
@extend .float-md-end !optional;
margin-left: 25px;
}

.btn.btn-default {
background-color: transparent;
margin-bottom: 30px;
margin-top: 30px;
}
}
}

0 comments on commit 5cbb3f8

Please sign in to comment.