flipped dark mode colors
This commit is contained in:
parent
82576a626b
commit
c2184986f7
|
@ -10,8 +10,8 @@
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: 'Protest Strike', sans-serif;
|
font-family: 'Protest Strike', sans-serif;
|
||||||
background: #000000;
|
background: white;
|
||||||
color: white;
|
color: black;
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,16 +60,17 @@
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
background-color: white;
|
background-color: black;
|
||||||
|
color: white;
|
||||||
border-radius: 10000px;
|
border-radius: 10000px;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-button:hover {
|
.input-button:hover {
|
||||||
background-color: #dedede;
|
background-color: rgb(44, 44, 44);
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-text {
|
.input-text {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -89,7 +90,7 @@
|
||||||
|
|
||||||
dialog {
|
dialog {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: none;
|
border: black solid 2px;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
@ -97,13 +98,13 @@
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
height: 500px;
|
height: 500px;
|
||||||
background: black;
|
background: white;
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog::backdrop {
|
dialog::backdrop {
|
||||||
background: rgba(255, 255, 255, 0.388);
|
background: rgba(0, 0, 0, 0.388);
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog input {
|
dialog input {
|
||||||
|
@ -117,30 +118,31 @@
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
body {
|
body {
|
||||||
background: white;
|
background: black;
|
||||||
color: black;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog {
|
dialog {
|
||||||
background: white;
|
background: black;
|
||||||
color: black;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog::backdrop {
|
dialog::backdrop {
|
||||||
background: rgba(0, 0, 0, 0.388);
|
background: rgba(255, 255, 255, 0.388);
|
||||||
}
|
}
|
||||||
|
|
||||||
dialog input {
|
dialog input {
|
||||||
border: black 2px solid;
|
border: black 2px solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-button {
|
.input-button {
|
||||||
background: black;
|
background: white;
|
||||||
color:white;
|
color:black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-button:hover {
|
.input-button:hover {
|
||||||
background-color: rgb(44, 44, 44);
|
background-color: #dedede;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.signup-button {
|
.signup-button {
|
||||||
|
|
Loading…
Reference in New Issue