pyolingo/style.css

121 lines
2.2 KiB
CSS

html {
font-size: 26px;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: rgb(122, 122, 122);
color: #14748A;
}
h2 {
font-size: 2.2rem;
}
h2.seitentitel {
width: 100%;
border-style: none;
margin-left: 100px;
}
div.header{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
background-color: rgb(210, 210, 210);
display: flex;
align-items: center;
justify-content: space-between;
z-index: 1000;
padding-top: 20px;
padding-bottom: 20px;
}
.button-ellipsoid:hover {
background: linear-gradient(#169ab7, #14748A);
}
.button-ellipsoid {
font-size: 26px;
font-family: Arial, Helvetica, sans-serif;
height: 100px;
width: 300px;
margin-top: 25px;
padding: 25px 40px;
color: black;
background: radial-gradient(ellipse at center, #14748A 0%, #169ab7 70%);
border: none;
border-radius: 180px / 130px;
box-shadow: inset 0 3px 6px rgba(255,255,255,0.4),
0 4px 8px rgba(0,0,0,0.3);
}
.button-karteikarte {
display: none;
font-size: 96px;
font-family: Arial, Helvetica, sans-serif;
width: 75%;
margin-top: 25px;
padding: 25px 40px;
color: black;
background: rgb(210, 210, 210);;
border: none;
box-shadow: inset 0 3px 6px rgba(255,255,255,0.4),
0 4px 8px rgba(0,0,0,0.3);
}
#deutsch {
height: 250px;
}
#deutsch.disabled {
pointer-events: none;
opacity: 1;
}
#italienisch {
height: 750px;
}
div.inhalt {
margin-top: 150px;
height: calc(100vh - 80px);
display: flex;
flex-direction:column;
align-items: center;
}
#wortZaehler {
width: 300px;
margin-right: 100px;
text-align: right;
margin-left: 0px;
}
div.menue {
position: fixed;
bottom: 50px;
left: 0;
width: 100%;
height: 70px;
z-index: 1000;
background-color: rgb(210, 210, 210);
padding-top: 20px;
display: flex;
justify-content: space-between;
}
a.menueLink {
text-decoration: none;
line-height: 0.8;
font-size: 1.5rem;
border-radius: 5px;
flex: 1;
text-align: center;
}
a:visited {
color:#14748A;
}