Compare commits

..

No commits in common. "9fe57fce902ab226117fffe87ecfe62508ba09ff" and "892a13dba216f8630cbe268d7fc233d7f996301a" have entirely different histories.

10 changed files with 17 additions and 41 deletions

View File

@ -14,6 +14,5 @@
-ms-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
box-shadow: 1px 1px 5px rgba(0,0,0,0.39);
}
</style>

View File

@ -4,14 +4,13 @@
<style>
.card-container {
background-color: var(--second-txt-color);
background-color: var(--main-text-color);
width: 90%;
height: auto;
margin: auto;
padding: 10px 5px 10px 5px;
border-radius: 0px;
margin-top: 10px;
border-radius: 10px;
margin-top: 5px;
margin-bottom: 5px;
box-shadow: 1px 1px 5px rgba(0,0,0,0.19);
}
</style>

View File

@ -24,7 +24,7 @@
<style>
a {
text-decoration: none;
color: var(--second-bg-color);
color: var(--dark-text-color);
}
.tag-container {

View File

@ -16,6 +16,6 @@
<style>
a {
text-decoration: none;
color: var(--second-bg-color);
color: var(--dark-text-color);
}
</style>

View File

@ -34,7 +34,7 @@
<style>
.message {
color: var(--second-bg-color);
color: var(--light-text-color);
}
.tag-box {

View File

@ -1,4 +1,4 @@
/*:root {
:root {
--main-bg-color: lightslategrey;
--accent-color: rgb(234, 255, 97);
--accent-rollover: yellow;
@ -8,22 +8,6 @@
--dark-text-color: rgb(56, 56, 7);
--link-color: cyan;
--link-visited-color: rgb(189, 0, 189);
}*/
:root {
--accent-bg-color: #271c19;
--accent-heading-color: #fffffe;
--accent-txt-color: #fff3ec;
--accent-link-color: #9656a1;
--second-bg-color: #55423d;
--second-heading-color: #fffffe;
--second-txt-color: #fff3ec;
--second-link-color: #9656a1;
--main-bg-color: #ffc0ad;
--main-heading-color: #271c19;
--main-txt-color: #271c19;
--main-link-color: #9656a1;
}
@font-face {

View File

@ -19,9 +19,7 @@
padding: 0px;
padding-bottom: 5px;
text-align: center;
background-color: var(--second-bg-color);
box-shadow: 0px 3px 2px rgba(0,0,0,0.19);
color: var(--second-txt-color);
background-color: var(--accent-color);
}
h1 {

View File

@ -39,20 +39,20 @@
height: 42px;
margin: 0;
padding: 0;
background-color: var(--second-bg-color);
background-color: var(--accent-color);
}
nav a {
float: left;
display: block;
color: var(--second-txt-color);
color: var(--dark-text-color);
text-align: center;
padding: 10px 15px;
margin-right: 1px;
text-decoration: none;
font-size: 18px;
font-family: caprasimo;
font-weight: normal;
font-weight: bolder;
}
nav a:hover {

View File

@ -9,17 +9,15 @@
<style>
.tag-link {
text-decoration: none;
color: var(--second-txt-color);
color: var(--dark-text-color);
padding: 3px 5px 3px 5px;
margin: 10px;
background-color: var(--main-link-color);
background-color: var(--accent-color);
border-radius: 5px;
box-shadow: 1px 1px 2px rgba(0,0,0,0.19);
}
.tag-link:hover,
.tag-link:active {
/*background-color: var(--accent-rollover);*/
box-shadow: 1px 1px 1px rgba(0,0,0,0.19) inset;
background-color: var(--accent-rollover);
}
</style>

View File

@ -54,17 +54,17 @@
flex-direction: column; /* Start with column layout for mobile */
align-items: center;
width: 100%;
background-color: var(--second-txt-color);
color: var(--second-bg-color);
background-color: var(--main-text-color);
color: var(--main-bg-color);
margin: 0; /* Reset margin to ensure full width */
padding: 0; /* Reset padding to ensure full width */
box-sizing: border-box; /* Include padding and border in width calculation */
box-shadow: 0px 3px 2px rgba(0,0,0,0.19);
}
#header-text {
flex: 1;
max-width: 100%;
color: #2b2b2b;
margin: 0;
text-align: center;
}
@ -92,7 +92,6 @@
border: none;
max-height: 150px;
height: 30vw;
box-shadow: 1px 1px 5px rgba(0,0,0,0.19);
}
/* Media query for larger screens */
@ -146,6 +145,5 @@
h1 {
font-family: caprasimo;
font-weight: normal;
}
</style>