Skip to content

Commit

Permalink
last
Browse files Browse the repository at this point in the history
  • Loading branch information
xxiicode committed Sep 18, 2023
1 parent b0f7ad7 commit e2df165
Showing 1 changed file with 60 additions and 13 deletions.
73 changes: 60 additions & 13 deletions app/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
html, body {
html,
body {
background: #ecf0f3;
}

Expand All @@ -20,17 +21,18 @@ header {
}

img#tpg-wordmark {
top: 21px;
top: 23px;
position: absolute;
}

main {
grid-column: 1/2;
grid-row: 2/3;
position: block;
/* position: absolute;
/* position: absolute;
left: 280px;
*/}
*/
}

main section#sub-brands-container {
max-width: 600px;
Expand Down Expand Up @@ -79,11 +81,20 @@ header img.external-url-icon {
font-family: BiotifExtraBold;
}

h1, h2, h3, h4, h5 {
h1,
h2,
h3,
h4,
h5 {
color: #12123a;
}

p, p a, li, p strong, p span, li strong {
p,
p a,
li,
p strong,
p span,
li strong {
font-family: 'freight-text-pro', serif;
}

Expand Down Expand Up @@ -124,12 +135,12 @@ img.web-icon {

a {
color: #1f8df0;
letter-spacing: -0,1px;
letter-spacing: -0, 1px;
}

a {
position: relative;
width: max-content;
position: relative;
width: max-content;
}

a::before {
Expand All @@ -151,18 +162,54 @@ a.web-url:before {
}

a:hover::before {
transform-origin: left;
transform: scaleX(1);
transform-origin: left;
transform: scaleX(1);
}

a img.external-url-icon, a img.web-icon {
a img.external-url-icon,
a img.web-icon {
opacity: 0.6;
}

a:hover img.external-url-icon, a:hover img.web-icon {
a:hover img.external-url-icon,
a:hover img.web-icon {
opacity: 1;
}

section#cover p {
max-width: 490px;
}




/*///////////Media queries///////////*/

@media (min-width: 768px) {
body {
border-top: 12px solid #7637f9;
display: grid;
grid-template-columns: 280px 1fr;
grid-template-rows: auto;
justify-items: start;
padding-inline:unset;
}

main {
grid-column: 2/3;
grid-row: auto;
}

header {
grid-column: 1/2;
grid-row: auto;
position: fixed;
}

header nav {
gap: 5px;
margin-top: 30px;
margin-bottom: 40px;
align-items: flex-start;
}
}

0 comments on commit e2df165

Please sign in to comment.