mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
111 lines
1.6 KiB
CSS
111 lines
1.6 KiB
CSS
@font-face {
|
|
font-family: Roboto;
|
|
src: url("/fonts/Roboto-Regular.ttf");
|
|
}
|
|
|
|
html {
|
|
transition: .6s;
|
|
font-family: 'Roboto';
|
|
background-color: #ccc;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3em;
|
|
margin-top: .5em;
|
|
padding-bottom: .5em;
|
|
border-bottom: 1px solid grey;
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2em;
|
|
text-align: left;
|
|
margin-top: .5em;
|
|
padding-bottom: .5em;
|
|
border-bottom: 1px solid grey;
|
|
width: 80%;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5em;
|
|
text-align: left;
|
|
margin-top: .5em;
|
|
padding-bottom: .5em;
|
|
border-bottom: 1px solid grey;
|
|
width: 75%;
|
|
}
|
|
|
|
.even {
|
|
background-color: #565656;
|
|
}
|
|
|
|
.odd {
|
|
background-color: #888;
|
|
}
|
|
|
|
.search {
|
|
background-image: url('/pic/search.png');
|
|
background-position: 10px 12px;
|
|
background-repeat: no-repeat;
|
|
font-size: 16px;
|
|
padding: 12px 20px 12px 40px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.button {
|
|
-webkit-appearance: none;
|
|
border: none;
|
|
display: inline-block;
|
|
padding: 5px 15px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
font-weight: 800;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #4CAFFF;
|
|
}
|
|
|
|
.button-disabled {
|
|
background-color: grey;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.button-disabled:hover {
|
|
background-color: grey;
|
|
}
|
|
|
|
.hover:hover {
|
|
background-color: #4CAF50;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#info-popup {
|
|
pointer-events: none;
|
|
position: fixed;
|
|
display: flex;
|
|
justify-content: center;
|
|
bottom: 2%;
|
|
margin: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
#info-popup-text {
|
|
color: #ffffff;
|
|
background-color: #000000;
|
|
padding: .1em .5em .2em;
|
|
border-radius: 50px;
|
|
opacity: 0;
|
|
}
|
|
|
|
@keyframes fade {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
10% {
|
|
opacity: 1;
|
|
}
|
|
}
|