Skip to content

Commit

Permalink
CSS consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Ungeziefi committed Sep 10, 2024
1 parent 2fcdec0 commit 551a766
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 7 deletions.
13 changes: 13 additions & 0 deletions css/cards.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ textarea {
margin-bottom: 0.5em;
}

textarea {
resize: none;
box-sizing: border-box;
width: 95%;
}

textarea.auto-resize {
overflow: hidden;
}

b.card-basic {
padding: 0.3em 0.5em 0.3em 0.5em;
}
Expand Down Expand Up @@ -156,4 +166,7 @@ img.chevron {
.card-basic {
width: unset;
}
textarea {
width: 100%;
}
}/*# sourceMappingURL=cards.css.map */
2 changes: 1 addition & 1 deletion css/cards.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions css/cards.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ textarea {
margin-bottom: 0.5em;
}

textarea {
resize: none;
box-sizing: border-box;
width: 95%;
}

textarea.auto-resize {
overflow: hidden;
}

b.card-basic {
padding: 0.3em 0.5em 0.3em 0.5em;
}
Expand Down Expand Up @@ -155,4 +165,8 @@ img.chevron {
.card-basic {
width: unset;
}

textarea {
width: 100%;
}
}
1 change: 1 addition & 0 deletions css/images.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@

.logo-container {
display: flex;
justify-content: space-between;
}

.logo-container img {
Expand Down
2 changes: 1 addition & 1 deletion css/images.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion css/images.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
}

.logo-container {
display: flex;
display: flex;
justify-content: space-between;
}

.logo-container img {
Expand Down
17 changes: 17 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ h3 {
line-height: 1.25em;
}

#logoBig {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

#logoBig img {
width: 100%;
max-width: 220px;
margin: 0;
padding: 0;
}

.flex {
display: flex;
}
Expand Down Expand Up @@ -264,4 +278,7 @@ textarea {
.width-40 {
max-width: 70% !important;
}
#logoBig {
display: none;
}
}/*# sourceMappingURL=styles.css.map */
2 changes: 1 addition & 1 deletion css/styles.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 23 additions & 3 deletions css/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ h3 {
line-height: 1.25em;
}

#logoBig {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

#logoBig img {
width: 100%;
max-width: 220px;
margin: 0;
padding: 0;
}

.flex {
display: flex;
}
Expand Down Expand Up @@ -238,13 +252,15 @@ textarea {
}

@media only screen and (max-width: 1220px) {

.content,
.content-index {
margin-right: 0px !important;
}
}

@media only screen and (max-width: 900px) {

.content,
.content-index {
margin-left: 0px;
Expand All @@ -267,16 +283,20 @@ textarea {
.width-90 {
max-width: 100% !important;
}

.width-70 {
max-width: 90% !important;
}

.width-60 {
max-width: 80% !important;
}

.width-40 {
max-width: 70% !important;
}

#logoBig {
display: none;
}
}

0 comments on commit 551a766

Please sign in to comment.