[CSS] Light theme!

This commit is contained in:
Eliseu Amaro 2021-09-06 19:06:28 +01:00 committed by Hugo Sales
parent 727133b6ed
commit 7a0e256557
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
8 changed files with 176 additions and 156 deletions

View File

@ -13,16 +13,7 @@
--medium-size: 1.2rem; --medium-size: 1.2rem;
--small-size: 1rem; --small-size: 1rem;
/* colours and shadows */
--bg1: #242434;
--bg2: #46465E;
--bg3: #8081BA;
--translucent: #1A1A2666;
--white: #FFFFFF;
--shadow: 0px 0px 32px 0px #00000066;
--shadow-light: 0px 0px 32px 0px #FFFFFF66;
/* transitions and animations */ /* transitions and animations */
--cubic-transition: all 200ms cubic-bezier(0, 0.55, 0.45, 1); --cubic-transition: all 200ms cubic-bezier(0, 0.55, 0.45, 1);
@ -30,6 +21,55 @@
--fade-out: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1); --fade-out: fadeOut 200ms cubic-bezier(0, 0.55, 0.45, 1);
} }
@media (prefers-color-scheme: dark) {
:root {
/* colours and shadows */
--bg1: #242434;
--bg2: #46465E;
--bg3: #8081BA;
--bg-button: linear-gradient(180deg, var(--bg2), transparent) !important;
--translucent: #1A1A2666;
--white: #FFFFFF;
--shadow: 0px 0px 32px 0px #00000066;
--shadow-light: 0px 0px 32px 0px #FFFFFF66;
}
.bg {
background-image: url(../images/bg.png);
}
select {
background-image: url("../images/drop.png") !important;
}
}
@media (prefers-color-scheme: light) {
:root {
/* colours and shadows */
--bg1: #F4F2E8;
--bg2: #B5BBB4;
--bg3: #6C766B;
--bg-button: #C0C5BC66 !important;
--translucent: #F4F2E866;
--white: #002B36;
--shadow: 0px 0px 32px 0px #00000066;
--shadow-light: 0px 0px 32px 0px #FFFFFF66;
}
.bg {
background-image: url(../images/bg-light.png);
}
select {
background-image: url("../images/drop-light.png") !important;
}
}
a, a,
a:visited { a:visited {
text-decoration: none; text-decoration: none;
@ -54,16 +94,28 @@ hr {
background: var(--bg2); background: var(--bg2);
} }
summary:focus { summary:focus,
animation-name: highlight; summary:hover {
animation-duration: 500ms; cursor: pointer !important;
animation-timing-function: ease-in-out; color: var(--bg1);
padding-left: var(--unit-size);
padding-right: var(--unit-size);
background: var(--bg3);
border-radius: var(--unit-size);
transition: var(--cubic-transition);
}
summary:focus .icon-details-open,
summary:hover .icon-details-open {
fill: var(--bg1);
transition: var(--cubic-transition);
} }
/* BACKGROUND IMG GRADIENT */ /* BACKGROUND IMG GRADIENT */
.bg { .bg {
background-color: var(--bg3); background-color: var(--bg3);
background-image: url(../images/bg.png);
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: 100% 100%; background-size: 100% 100%;
@ -386,8 +438,8 @@ summary:focus {
} }
/* BUTTONS AND INPUT SHENANIGANS */ /* BUTTONS AND INPUT SHENANIGANS */
label { label, button {
font-weight: bold; font-weight: bold !important;
} }
select, select,
@ -399,15 +451,22 @@ input {
position: relative; position: relative;
color: var(--white); color: var(--white);
padding: 5px 10px; padding: 5px 10px;
border: 2px solid var(--bg2); border: 2px solid var(--bg2) !important;
border-radius: var(--unit-size); border-radius: var(--unit-size) !important;
background-color: var(--translucent); background-color: var(--translucent) !important;
} }
button { select {
font-weight: bold !important; -webkit-appearance: none !important;
background-image: linear-gradient(180deg, var(--bg2), transparent) !important; -moz-appearance: none !important;
background-repeat: no-repeat;
background-size: 16px;
background-position: center right 5px;
color: var(--white) !important; color: var(--white) !important;
border: 2px solid var(--bg2);
border-radius: var(--unit-size);
} }
input[type=radio] { input[type=radio] {
@ -415,10 +474,6 @@ input[type=radio] {
background-color: var(--bg1) !important; background-color: var(--bg1) !important;
} }
input[type=radio]:checked {
background-color: var(--white) !important;
}
input[type=checkbox] { input[type=checkbox] {
background-color: var(--bg2) !important; background-color: var(--bg2) !important;
background-size: cover; background-size: cover;
@ -430,14 +485,15 @@ input[type=checkbox] {
mask-image: url("../icons/check-off.svg") !important; mask-image: url("../icons/check-off.svg") !important;
} }
input[type=checkbox]:checked { /* DISABLED STATE TEXT COLOR */
background-color: var(--bg3) !important; :is(:disabled, :disabled:active)::file-selector-button,
-webkit-mask-image: url("../icons/check-on.svg") !important; button:is(:disabled, :disabled:active),
-o-mask-image: url("../icons/check-on.svg") !important; input:is([type=reset], [type=button], [type=submit]):is(:disabled, :disabled:active),
-moz-mask-image: url("../icons/check-on.svg") !important; select:is(:disabled, :disabled:active) > button {
mask-image: url("../icons/check-on.svg") !important; color: var(--white) !important;
} }
/* HOVER AND FOCUS */
textarea:hover, textarea:hover,
textarea:focus, textarea:focus,
button:hover, button:hover,
@ -447,22 +503,33 @@ input:focus {
border: solid 2px var(--bg3) !important; border: solid 2px var(--bg3) !important;
color: var(--white) !important; color: var(--white) !important;
} }
select:hover,
select:focus {
border-color: var(--bg3) !important;
}
input[type=checkbox]:hover, input[type=checkbox]:hover,
input[type=checkbox]:focus { input[type=checkbox]:focus {
background-color: var(--bg3) !important; background-color: var(--bg3) !important;
} }
:is(:disabled, :disabled:active)::file-selector-button,
button:is(:disabled, :disabled:active), input[type=radio]:checked {
input:is([type=reset], [type=button], [type=submit]):is(:disabled, :disabled:active), background-color: var(--white) !important;
select:is(:disabled, :disabled:active) > button { }
color: var(--white) !important;
input[type=checkbox]:checked {
background-color: var(--bg3) !important;
-webkit-mask-image: url("../icons/check-on.svg") !important;
-o-mask-image: url("../icons/check-on.svg") !important;
-moz-mask-image: url("../icons/check-on.svg") !important;
mask-image: url("../icons/check-on.svg") !important;
} }
/* file selector */ /* file selector */
input[type=file] { input[type=file] {
font-family: var(--main-font) !important; font-family: var(--main-font) !important;
font-weight: normal !important; font-weight: normal !important;
background: linear-gradient(180deg, var(--bg2), transparent) !important; background: var(--bg-button);
border: 2px solid var(--bg2); border: 2px solid var(--bg2);
border-radius: var(--unit-size); border-radius: var(--unit-size);
} }
@ -474,93 +541,7 @@ input[type=file] {
color: var(--white) !important; color: var(--white) !important;
} }
select { /* ACCESSIBILITY MENU */
-webkit-appearance: none !important;
-moz-appearance: none !important;
background-image: url("../images/drop.png") !important;
background-repeat: no-repeat;
background-size: 16px;
background-color: var(--bg1) !important;
background-position: center right 5px;
color: var(--white) !important;
border: 2px solid var(--bg2);
border-radius: var(--unit-size);
}
select:hover,
select:focus {
border-color: var(--bg3);
}
/* MEDIA QUERIES */
/* sidepanels need to be shown by default on desktop, hidden on mobile */
.panel .panel-content {
display: flex;
flex-direction: column;
font-size: var(--small-size);
/* should remain in place for the user */
position: fixed;
top: 0;
/* should be bellow header */
margin-top: 3rem;
/* should occupy the entire vertical real estate */
height: calc(100% - 3rem);
padding: var(--unit-size);
}
@media (min-width: 1200px) {
#panel-left-icon,
#panel-right-icon {
display: none;
}
.panel .panel-content {
width: 100%;
max-width: 20%;
}
a[id|="anchor"]:target + * {
animation-name: highlight;
animation-duration: 500ms;
animation-timing-function: ease-in-out;
}
}
@media (max-width: 1200px) {
/* content should occupy the entire width at this size */
.container {
margin-left: unset;
margin-right: unset;
}
.content {
max-width: 100%;
}
#panel-left-toggle:not(:checked) ~ .panel-content,
#panel-right-toggle:not(:checked) ~ .panel-content {
display: none;
}
#panel-left-toggle:checked ~ .panel-content,
#panel-right-toggle:checked ~ .panel-content,
a[id|="anchor"]:target ~ .panel-content {
display: flex !important;
width: 100%;
background-color: var(--bg2);
background-image: url(../images/bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
}
.accessibility-menu { .accessibility-menu {
position: absolute; position: absolute;
left: -1000px; left: -1000px;
@ -627,17 +608,80 @@ select:focus {
50% { 50% {
border-radius: var(--unit-size); border-radius: var(--unit-size);
box-shadow: inset 0 20px 40px var(--white);
box-shadow: inset 0 0 10px var(--white), transition: box-shadow 0.3s ease-in-out;
inset 10px 0 10px var(--bg3),
inset -10px 0 10px var(--bg2),
0 0 10px var(--white),
-10px 0 10px var(--bg3),
10px 0 10px var(--bg2);
} }
100% { 100% {
box-shadow: initial; box-shadow: initial;
border-radius: var(--unit-size); border-radius: var(--unit-size);
} }
}
/* MEDIA QUERIES */
/* sidepanels need to be shown by default on desktop, hidden on mobile */
.panel .panel-content {
display: flex;
flex-direction: column;
font-size: var(--small-size);
/* should remain in place for the user */
position: fixed;
top: 0;
/* should be bellow header */
margin-top: 3rem;
/* should occupy the entire vertical real estate */
height: calc(100% - 3rem);
padding: var(--unit-size);
}
@media (min-width: 1200px) {
#panel-left-icon,
#panel-right-icon {
display: none;
}
.panel .panel-content {
width: 100%;
max-width: 20%;
}
a[id|="anchor"]:target + * {
animation-name: highlight;
animation-duration: 600ms;
animation-timing-function: ease-in-out;
}
}
@media (max-width: 1200px) {
/* content should occupy the entire width at this size */
.container {
margin-left: unset;
margin-right: unset;
}
.content {
max-width: 100%;
}
#panel-left-toggle:not(:checked) ~ .panel-content,
#panel-right-toggle:not(:checked) ~ .panel-content {
display: none;
}
#panel-left-toggle:checked ~ .panel-content,
#panel-right-toggle:checked ~ .panel-content,
a[id|="anchor"]:target ~ .panel-content {
display: flex !important;
width: 100%;
background-color: var(--bg2);
background-image: url(../images/bg.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
}
} }

View File

@ -104,15 +104,6 @@
padding: var(--unit-size) var(--small-size); padding: var(--unit-size) var(--small-size);
} }
.section-title-settings summary:focus,
.section-title-settings summary:hover {
cursor: pointer !important;
border-radius: var(--unit-size);
background: var(--white);
color: var(--bg1);
transition: var(--cubic-transition);
}
.section-title-settings summary:focus .icon-details-open, .section-title-settings summary:focus .icon-details-open,
.section-title-settings summary:hover .icon-details-open { .section-title-settings summary:hover .icon-details-open {
fill: var(--bg1); fill: var(--bg1);

Binary file not shown.

After

Width:  |  Height:  |  Size: 884 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 658 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 552 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

View File

@ -1,15 +0,0 @@
<svg
xmlns='http://www.w3.org/2000/svg'
xmlns:xlink='http://www.w3.org/1999/xlink'
width='100%' height='100%'>
<filter id='n' x='0' y='0'>
<feTurbulence
type='fractalNoise'
baseFrequency='0.85'
stitchTiles='stitch'/>
</filter>
<rect width='100%' height='100%' fill='#fff'/>
<rect width='100%' height='100%' filter="url(#n)" opacity='0.22'/>
</svg>

Before

Width:  |  Height:  |  Size: 446 B