Compare commits

...

2 Commits

Author SHA1 Message Date
9d2573a5ed removed final colors after merge 2025-08-23 21:08:59 -07:00
4924c47209 removed fancy colors, fonts, and images 2025-08-23 21:07:03 -07:00
2 changed files with 13 additions and 38 deletions

View File

@@ -1,8 +1,4 @@
* {
font-family: Helvetica; }
.top_bar { .top_bar {
background-color: #16161d;
padding: 1px; } padding: 1px; }
.column { .column {
@@ -12,8 +8,6 @@
margin-right: 5%; } margin-right: 5%; }
.content-box { .content-box {
background-color: rgba(31, 31, 40, 0.7);
border-radius: 10px;
padding: 10px; padding: 10px;
width: 80%; width: 80%;
margin: 10px; margin: 10px;
@@ -39,25 +33,6 @@
width: 100%; } width: 100%; }
h1 { h1 {
color: #7e9cd8;
margin-left: 5%; margin-left: 5%;
margin-right: 5%; margin-right: 5%;
padding: 10px 0px; } padding: 10px 0px; }
h2 {
color: #ff5d62; }
p {
color: #dcd7ba; }
body {
background-image: url("PerfectSunrise.jpg");
background-size: auto 150%;
background-repeat: no-repeat;
margin: 0px; }
a:link {
color: #7e9cd8; }
a:visited {
color: #957fb8; }

View File

@@ -13,11 +13,11 @@ $winter_blue: #252535;
* { * {
font-family: Helvetica; //font-family: Helvetica;
} }
.top_bar { .top_bar {
background-color: $sumi_ink0; //background-color: $sumi_ink0;
padding: 1px; padding: 1px;
} }
@@ -29,8 +29,8 @@ $winter_blue: #252535;
} }
.content-box { .content-box {
background-color: rgba(31, 31, 40, 0.7); //background-color: rgba(31, 31, 40, 0.7);
border-radius: 10px; //border-radius: 10px;
padding: 10px; padding: 10px;
width: 80%; width: 80%;
margin: 10px; margin: 10px;
@@ -65,32 +65,32 @@ $winter_blue: #252535;
} }
h1 { h1 {
color: $crystal_blue; //color: $crystal_blue;
margin-left: 5%; margin-left: 5%;
margin-right: 5%; margin-right: 5%;
padding: 10px 0px; padding: 10px 0px;
} }
h2 { h2 {
color: $peach_red; //color: $peach_red;
} }
p { p {
color: $fuji_white; //color: $fuji_white;
} }
body { body {
background-image: url("PerfectSunrise.jpg"); //background-image: url("PerfectSunrise.jpg");
background-size: auto 150%; //background-size: auto 150%;
background-repeat: no-repeat; //background-repeat: no-repeat;
margin: 0px; //margin: 0px;
} }
a:link { a:link {
color: $crystal_blue; //color: $crystal_blue;
} }
a:visited { a:visited {
color: $oni_violet; //color: $oni_violet;
} }