shopping-list/style/master.css

121 lines
1.8 KiB
CSS
Raw Normal View History

2018-10-24 15:00:27 +02:00
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,800');
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
html {
transition: .6s;
font-family: 'Open Sans', sans-serif;
background-color: #c3c3c3;
}
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
h1 {
font-size: 3em;
text-align: center;
2018-10-24 18:15:42 +02:00
color: #333;
text-transform: uppercase;
2018-10-24 15:00:27 +02:00
}
2018-10-24 18:15:42 +02:00
h2 {
color: #333;
text-transform: uppercase;
}
h3 {
color: #444;
text-transform: capitalize;
}
h4 {
color: #444;
text-transform: capitalize;
}
h5 {
color: #555;
text-transform: lowercase;
font-weight: normal;
}
h6 {
color: #555;
text-transform: lowercase;
font-weight: normal;
}
table {
border-collapse: collapse;
border: 1px solid black;
margin: 1em 0;
}
th {
background-color: #63bf3c;
color: white;
}
td, th {
/* border: 1px solid black; */
padding: .2em .5em;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
button {
display: block;
border: 1px solid #777777;
padding: .5em 1em;
margin: 1em .25em;
}
pre {
max-height: calc(50vh - 9em);
background: #f4f4f4;
border: 1px solid #ddd;
border-left: 3px solid #a0c391;
color: #666;
page-break-inside: avoid;
font-family: monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 1em 1.5em;
display: block;
word-wrap: break-word;
}
2018-10-24 15:00:27 +02:00
.even {
background-color: #000;
}
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
.odd {
background-color: #5f5f5f;
}
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
.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;
}
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
.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;
}
2018-10-24 18:15:42 +02:00
2018-10-24 15:00:27 +02:00
.hover:hover {
2018-10-24 18:15:42 +02:00
background-color: #4CAF50;
cursor: pointer;
2018-10-24 15:00:27 +02:00
}