mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-26 03:12:03 +02:00
WIP: improved css all around, started fixing features page
This commit is contained in:
parent
ffa150d952
commit
4e41363ec9
13 changed files with 265 additions and 179 deletions
30
src/styles/pages/about.scss
Normal file
30
src/styles/pages/about.scss
Normal file
|
@ -0,0 +1,30 @@
|
|||
h1 {
|
||||
font-size: 3rem;
|
||||
text-align: center;
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
.aboutdiv {
|
||||
section {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 4px;
|
||||
margin: 1rem;
|
||||
padding: 1rem;
|
||||
display: block;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
font-size: 0.9rem;
|
||||
transition: 0.5s;
|
||||
|
||||
&:hover {
|
||||
color: rgb(96 59 255) !important;
|
||||
}
|
||||
}
|
||||
}
|
23
src/styles/pages/contact.scss
Normal file
23
src/styles/pages/contact.scss
Normal file
|
@ -0,0 +1,23 @@
|
|||
.wrapper {
|
||||
margin: 0;
|
||||
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
text-align: center;
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
text-align: center;
|
||||
|
||||
.contact {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
img {
|
||||
margin: 0 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -26,7 +26,7 @@
|
|||
img {
|
||||
display: flex;
|
||||
border-radius: 5px;
|
||||
max-width: 90%;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
p, code {
|
||||
|
@ -36,3 +36,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
.footernotesection {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 4px;
|
||||
margin: 1rem;
|
||||
padding: 1rem;
|
||||
display: block;
|
||||
text-align: center;
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: underline;
|
||||
font-size: 0.9rem;
|
||||
transition: 0.5s;
|
||||
|
||||
&:hover {
|
||||
color: rgb(96 59 255) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -8,33 +8,31 @@
|
|||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 4px;
|
||||
margin: 1rem;
|
||||
padding: 1rem;
|
||||
padding: 1.5rem;
|
||||
display: block;
|
||||
@media (min-width: 800px) {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
|
||||
@media (min-width: 950px) {
|
||||
max-width: 900px;
|
||||
margin: 1rem auto;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
|
||||
//display: grid;
|
||||
//grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
.stackgrid_1 {
|
||||
grid-column: span 1;
|
||||
text-align: center;
|
||||
|
||||
img {
|
||||
max-width: 80%;
|
||||
max-height: 200px;
|
||||
width: 200px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
img {
|
||||
max-width: 80%;
|
||||
max-height: 200px;
|
||||
width: 200px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.stackgrid_3 {
|
||||
grid-column: span 3;
|
||||
//grid-column: span 3;
|
||||
text-align: center;
|
||||
align-self: center;
|
||||
margin: auto
|
||||
}
|
||||
|
||||
.stackitm {
|
||||
margin: auto;
|
||||
}
|
||||
}
|
||||
|
@ -43,6 +41,12 @@
|
|||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 4px;
|
||||
margin: 1rem;
|
||||
|
||||
@media (min-width: 950px) {
|
||||
width: 900px;
|
||||
margin: 1rem auto;
|
||||
}
|
||||
|
||||
padding: 1rem;
|
||||
text-align: center;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue