oi
This commit is contained in:
parent
732bf7476d
commit
184f58a147
4 changed files with 89 additions and 51 deletions
|
@ -0,0 +1,47 @@
|
|||
:root {
|
||||
--text-color: rgb(230, 210, 255);
|
||||
--background-color: rgb(50, 35, 75);
|
||||
--second-bg-color: black;
|
||||
}
|
||||
|
||||
* {
|
||||
text-align: center;
|
||||
color: var(--text-color);
|
||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||
}
|
||||
|
||||
p, select, input {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
body, html {
|
||||
background-color: var(--background-color);
|
||||
}
|
||||
|
||||
.grid-container {
|
||||
width: 100%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
/* .grid-container > *:not(select, input) {
|
||||
float: left;
|
||||
} */
|
||||
|
||||
select, input{
|
||||
display: inline-grid;
|
||||
background-color: var(--second-bg-color);
|
||||
color: var(--text-color);
|
||||
margin: 5px auto;
|
||||
border: 2px var(--text-color) solid;
|
||||
border-radius: 5px;
|
||||
/* width: 70%; */
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
label {
|
||||
font-size: 1.5rem;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue