mirror of
https://github.com/timokz/flutter-vienna-hackathon-25.git
synced 2025-11-09 10:54:20 +01:00
76 lines
No EOL
1.2 KiB
CSS
76 lines
No EOL
1.2 KiB
CSS
html {
|
|
box-sizing: border-box;
|
|
font-size: 14px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background: url('/images/background.svg') no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|
|
|
|
*, *:before, *:after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
ol, ul {
|
|
list-style: none;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
body {
|
|
padding: 16px;
|
|
}
|
|
|
|
hr {
|
|
margin-top: 16px; margin-bottom: 16px;
|
|
border: 0;
|
|
height: 1px;
|
|
background: #999;
|
|
}
|
|
|
|
.content {
|
|
min-width: 300px;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
padding: 16px;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
.logo-box a {
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
color: #666;
|
|
}
|
|
|
|
.logo-box {
|
|
text-align: center;
|
|
}
|
|
|
|
.info-box p {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.link-box {
|
|
text-align: center;
|
|
color: #999;
|
|
}
|
|
|
|
.link-box a {
|
|
text-decoration: none;
|
|
} |