Skip to content

Commit

Permalink
Update local storage gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
StubberG3 committed Feb 7, 2024
1 parent 7fb433a commit eb19fd8
Show file tree
Hide file tree
Showing 82 changed files with 177 additions and 38,271 deletions.
160 changes: 99 additions & 61 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

/* COLORS
- default body text #000
- primary color #372c4b
- primary color #9068dd
- accent color TBD
*/

Expand All @@ -21,28 +21,27 @@
*/

:root {
--primary-color: #4e406a;
--primary-color: #9068dd;
--default-text-color: #000;
--background-color: #fff;
--role-logo-border-color: #fff;
--role-logo-size: 100px;
--standard-border-radius: 50px;
--role-logo-background-color: #fff;
--emphasis-text-color: #b3b3b3;
--subtle-text-color: #767676;
--link-underline-color: #acacac;
--link-hover-color: #816cab;
--avatar-size: 100px;
--emphasis-text-color: #000;
--subtle-text-color: #4d4d4d;
}

@media screen and (max-width: 992px) {
@media only screen and (max-width: 869px) {
:root {
--section-margin: 64px;
--font-size: 17px;
}
}

@media screen and (min-width: 993px) {
@media only screen and (min-width: 870px) {
:root {
--section-margin: 150px;
--font-size: 20px;
}
}
Expand All @@ -54,6 +53,14 @@ html {
line-height: 1.15;
}

input {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
overflow: visible;
}

body {
font-family: 'Roboto', sans-serif;
font-weight: 400;
Expand All @@ -68,28 +75,42 @@ body {
/* 3. COMPONENTS
============================================================== */

header,
section {
margin-bottom: var(--section-margin);
}

header {
display: flex;
align-items: center;
}

footer .skills i {
display: block;
h1 {
font-weight: 500;
margin: 0;
}

.education ul,
.experience ul {
padding: 0;
margin: 0;
h1 {
font-size: 2em;
margin: .67em 0
}

h2 {
font-size: 1.5em;
font-weight: 500;
text-transform: uppercase;
}

nav {
flex: 1;
display: flex;
align-items: center;
}

.role ul li:not(.role-tenure)::before {
content: "\2022";
color: var(--primary-color);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
ul {
list-style-type: none;
padding: 0;
margin: 0;
}

.role-logo {
Expand Down Expand Up @@ -127,10 +148,6 @@ footer .skills i {
color: var(--emphasis-text-color);
}

ul.role-key-points {
padding: 0 1em;
}

.role-key-points li {
margin-bottom: 10px;
}
Expand All @@ -140,22 +157,38 @@ ul.role-key-points {
text-transform: uppercase;
color: var(--subtle-text-color);
padding-top: 4px;
list-style-type: none;
}

.welcome {
text-align: center;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 10rem;
}

/* 4. MEDIA QUERIES
============================================================== */

@media only screen and (min-width: 993px) {
.container {
padding: 2%;
}

nav {
flex-direction: row-reverse;
}

nav {
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 32px;
width: 100%;
}

nav a {
display: block;
padding: 6px 0;
}

nav ul {
width: 100%;
max-height: 250px;
overflow: hidden;
}

.role:not(:last-child) {
padding-bottom: 64px;
}
Expand All @@ -176,14 +209,44 @@ ul.role-key-points {
}

@media only screen and (max-width: 992px) {
.container {
margin: 0 auto;
max-width: 1140px;
padding: 1%;
}

.experience {
margin-bottom: calc(var(--section-spacing) - 40px);
}

h1 {
font-size: 20px;
}

h2 {
margin-bottom: 15px;
}

header {
flex-direction: column-reverse;
}

header .subtitle {
display: none;
}

nav a {
padding: 8px 16px;
}

nav a:focus-visible {
outline-offset: -8px;
}

nav ul {
display: flex;
}

.role:not(:last-child) {
padding-bottom: 32px;
}
Expand All @@ -195,29 +258,4 @@ ul.role-key-points {
.role-key-points {
padding-left: calc(var(--role-logo-size) + var(--role-logo-right-margin));
}
}

a {
color: inherit;
text-decoration-style: dotted;
text-decoration-line: underline;
text-underline-position: under;
text-underline-offset: 2px;
text-decoration-thickness: 1px;
text-decoration-color: var(--link-underline-color);
}

.avatar {
width: var(--avatar-size);
height: var(--avatar-size);
border-radius: calc(var(--avatar-size) / 2.0);
margin: 0 auto;
}

.primary-color {
background-color: var(--primary-color);
}

.primary-color-text {
color: var(--primary-color);
}
21 changes: 0 additions & 21 deletions css/materialize-src/LICENSE

This file was deleted.

91 changes: 0 additions & 91 deletions css/materialize-src/README.md

This file was deleted.

Loading

0 comments on commit eb19fd8

Please sign in to comment.