diff options
| author | thinkpadmaster <a.scerba02@gmail.com> | 2023-08-29 17:14:38 -0500 | 
|---|---|---|
| committer | Alex Scerba <alex@scerba.org> | 2024-10-29 13:19:57 -0400 | 
| commit | b56e200279475e1dbe138ed24afb565571b6fe28 (patch) | |
| tree | 1c3c91bd4bbb6f548739936b61cea9619fedff5a /static/style.css | |
| parent | 027a96c9c8ecd9452a21f0173a15860d03a3f339 (diff) | |
Substantial style update
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 78 | 
1 files changed, 51 insertions, 27 deletions
| diff --git a/static/style.css b/static/style.css index 516a2b7..cd39bf3 100644 --- a/static/style.css +++ b/static/style.css @@ -112,20 +112,24 @@ main {  }  h1 { -  margin-top: 8vh; -  margin-left: 4vw; +  text-align: center;    font-size: 45px;  }  .frontpage-subtitle { -  margin-left: 6vw; +  display: flex; +  justify-content: space-around; +  margin-top: 45px; +} + +.frontpage-subtitle > .subtitle-text {    display: flex;    flex-wrap: wrap;    flex-direction: row;  } -.frontpage-subtitle > p { -  margin: 10px; +.frontpage-subtitle > .subtitle-text > p:nth-of-type(2) { +  margin-left: 20px;  }  h2 { @@ -133,6 +137,14 @@ h2 {    margin-bottom: 40px;  } +blockquote { +  font-style: italic; +} + +ul { +  list-style: circle; +} +  @keyframes slideInFromBottom {    0% {      transform: translateY(100%); @@ -144,6 +156,14 @@ h2 {    }  } +.postBackground { +  background-color: var(--dark-transparent); +  padding-top: 10px; +  padding-bottom: 10px; +  display: flex; +  justify-content: space-around; +} +  .posts {    display: flex;    flex-direction: row; @@ -151,14 +171,19 @@ h2 {    max-height: 40vh;  } -.postContent, .projectList { -  background-color: var(--dark-transparent); -  margin: 0 15vw; -  padding: 10px 30px; +.postContent { +  width: 60em; +  margin: 0 20px;  } -.postContent > p, .projectList > p { -  margin-left: 25px; +.projectContent { +  width: 80em; +  margin: 0 20px; +} + +.projectList { +  width: 80em; +  margin: 0 20px;  }  .projectList figure { @@ -199,13 +224,11 @@ a, a > figcaption {  }  .bottom > .posts > .thumbnail { -  padding: 10px;    margin: auto auto 30px auto;  } -.bottom > .posts > .thumbnail:hover { -  border-radius: 5px; -  background-color: var(--thumbnail-hover-color); +.bottom > .posts > .thumbnail:not(:last-child) { +  margin-right: 20px;  }  .bottom > .posts > .thumbnail img { @@ -252,22 +275,22 @@ video {  }  @media screen and (max-width: 1000px) { +  .postContent { +    width: 40em; +  }    .bottom {      position: relative; -    margin-top: 13vh; +    margin-top: 100px;      max-height: fit-content;    } -  .postContent, .projectList { -    margin: 0 40px; -  }    .posts {      padding-left: 100px;      padding-right: 100px;      flex-direction: column;      max-height: fit-content;    } -  .bottom > .posts > .thumbnail { -    margin: 15px auto; +  .bottom > .posts > .thumbnail.thumbnail:not(:last-child) { +    margin-right: auto;    }    .bottom > .posts > .thumbnail img {      width: fit-content; @@ -286,11 +309,13 @@ video {      flex-direction: column;    }    h1 { -    margin-top: 85px; +    text-align: left; +    margin: 0 0 0 20px;      font-size: 36px;    } -  .postContent, .projectList { -    margin: 100px 0 0 0; +  .frontpage-subtitle { +    margin-left: 20px; +    justify-content: unset;    }    .posts {      padding: 0; @@ -318,8 +343,8 @@ video {      height: 60px;      width: 60px;      padding: 5px; -    border-bottom-left-radius: 8px; -    background-color: var(--dark-transparent); +    /*border-bottom-left-radius: 8px; +    background-color: var(--dark-transparent);*/    /* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */ @@ -390,7 +415,6 @@ video {      z-index: 2;      background-color: var(--dark-transparent);      padding: 70px 25px 20px 25px; -    border-bottom-left-radius: 8px;    /* HIDDEN INITIALLY  :  */ | 
