93 lines
1.7 KiB
CSS
93 lines
1.7 KiB
CSS
html {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: inline-block;
|
|
margin: 0px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
body {
|
|
background-color: white;
|
|
font-size: 25px;}
|
|
|
|
input.texttxt {
|
|
font-size: 25px;
|
|
text-align: center;
|
|
}
|
|
|
|
div.labeltxt {
|
|
color: black;
|
|
background-color: #B6B6B6;
|
|
font-size: 25px;
|
|
padding: 20px 20px;
|
|
margin: 20px;
|
|
text-align: left;
|
|
border-radius: 10px;}
|
|
|
|
div.headertxt {
|
|
color: white;
|
|
background-color: blue;
|
|
font-size: 25px;
|
|
padding: 20px 200px;
|
|
margin: 20px;
|
|
text-align: center;
|
|
border-radius: 10px;}
|
|
|
|
|
|
|
|
td {
|
|
font-size: 25px;
|
|
padding: 5px 10px
|
|
}
|
|
|
|
button.buttontxt {
|
|
background-color: #f48100;
|
|
border: none;
|
|
color: white;
|
|
padding: 13px 10px
|
|
text-decoration:none;
|
|
font-size: 25px;
|
|
margin: 0px auto 15px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: bold;}
|
|
|
|
span[lang=es], span[lang=de], span[lang=ca], { display: none}
|
|
|
|
.dropdown {
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 10px 10px;
|
|
margin: 30px 50px;
|
|
background: lightgrey;
|
|
border: 1px solid;
|
|
border-color: white;
|
|
border-radius: 20px;
|
|
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);}
|
|
|
|
|
|
.dropdown-dark {
|
|
background: lightgrey;
|
|
border-color: lightgrey;
|
|
-webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px 1px rgba(0, 0, 0, 0.2);}
|
|
|
|
.dropdown-select {
|
|
position: relative;
|
|
width: 80%;
|
|
margin: 20;
|
|
padding: 20px 20px;
|
|
line-height: 34px;
|
|
font-size: 25px;
|
|
color: black;
|
|
text-shadow: 0 0px white;
|
|
background: lightgrey; /* Fallback for IE 8 */
|
|
background: rgba(0, 0, 0, 0) !important; /* "transparent" doesn't work with Opera */
|
|
border: 0;
|
|
border-radius: 0;
|
|
-webkit-appearance: none;
|
|
}
|
|
|