Skip to content

Commit

Permalink
Merge pull request #2 from techswitch-learners/MM.003_create_a_basic_…
Browse files Browse the repository at this point in the history
…stylesheet

basic stylesheet
  • Loading branch information
sun-amy authored Jul 30, 2024
2 parents 21c5d0a + 13760d6 commit 618896a
Showing 1 changed file with 32 additions and 28 deletions.
60 changes: 32 additions & 28 deletions src/App.scss
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
.App {
text-align: center;
}
$default-background: #2D3047;
$default-background-darker: #000000;
$default-foreground: #A15E49;
$default-accent-sunglow: #FFD166;
$default-accent-skyblue: #6DC0D5;
$text-color: white;

$default-font: "Segoe UI";

.App-logo {
height: 40vmin;
pointer-events: none;
.title {
color: $text-color;
font-size: 24px;
line-height: 32px;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
.sub-title {
color: $text-color;
font-size: 20px;
line-height: 24px;
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
.button-text {
color: $default-accent-skyblue;
font-size: 20px;
line-height: 32px;
}

.App-link {
color: #61dafb;
.body {
color: $text-color;
font-size: 14px;
line-height: 20px;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
.supporting-text {
color: $text-color;
font-size: 10px;
line-height: 16px;
}

a {
text-decoration: none;
}

0 comments on commit 618896a

Please sign in to comment.