77 lines
1.2 KiB
CSS
77 lines
1.2 KiB
CSS
body {
|
|
text-align: center;
|
|
background-color: antiquewhite;
|
|
font-size: 150%;
|
|
font-family: 'Titillium Web', sans-serif;
|
|
}
|
|
|
|
input {
|
|
height: 2rem;
|
|
width: 20rem;
|
|
font-size: 110%;
|
|
padding: 1rem 0.5rem;
|
|
}
|
|
|
|
h1 {
|
|
padding: 2rem;
|
|
}
|
|
|
|
button {
|
|
font-size: 100%;
|
|
margin-top: 1rem;
|
|
padding: 1rem 1.5rem;
|
|
border-radius: 5px;
|
|
background-color: burlywood;
|
|
cursor: pointer;
|
|
border: none;
|
|
}
|
|
|
|
ol {
|
|
padding: 0;
|
|
margin-bottom: 5rem;
|
|
list-style-type: none;
|
|
}
|
|
|
|
ol>li {
|
|
padding-bottom: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
#grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
|
|
#reset {
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
.delete {
|
|
margin-left: 2rem;
|
|
width: 1rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.delete:hover {
|
|
color: rgb(0, 0, 0);
|
|
}
|
|
|
|
.dropdown {
|
|
height: 50px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
padding-left: 5px;
|
|
padding: 10px;
|
|
font-size: 18px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
color: #555;
|
|
background-color: rgb(255, 255, 255);
|
|
background-image: none;
|
|
border: 1px solid rgb(41, 18, 18);
|
|
}
|
|
|
|
@media screen and (max-width:768px) {
|
|
#grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
} |