54 lines
708 B
CSS
54 lines
708 B
CSS
* {
|
|
font-family: 'Roboto';
|
|
}
|
|
.box {
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
max-width: 380px;
|
|
padding: 40px;
|
|
padding-bottom: 60px;
|
|
}
|
|
.logo {
|
|
padding: 5px;
|
|
max-width: 100%;
|
|
}
|
|
h2 {
|
|
font-weight: normal;
|
|
font-size: 22px;
|
|
}
|
|
.browser-logo {
|
|
display: block;
|
|
margin: 30px auto;
|
|
height: 120px;
|
|
}
|
|
.download {
|
|
display: block;
|
|
}
|
|
.bottom {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 1em;
|
|
text-align: center;
|
|
color: white;
|
|
}
|
|
.continue {
|
|
color: white;
|
|
background-color: #8cc63f;
|
|
padding: 5px;
|
|
border-radius: 3px;
|
|
}
|
|
.continue:hover {
|
|
text-decoration: none;
|
|
background-color: #7eb239;
|
|
}
|
|
a {
|
|
color: #6a1;
|
|
border-width: 0;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|