1
0
mirror of https://github.com/bingohuang/docker-labs.git synced 2025-07-16 11:53:01 +08:00
docker-labs/www/assets/style.css
Jonathan Leibiusky @xetorthio af9986c0f8 Validates that user is a human.
Add google recaptcha as an initial page before creating any session.
To configure recaptcha there are 2 environment variables that are needed
`GOOGLE_RECAPTCHA_SITE_KEY` and `GOOGLE_RECAPTCHA_SITE_SECRET`.
The code contains development defaults that should be set in production
to real values.
**NOTICE: Development defaults assume that the domain is `localhost`**
2016-11-15 16:53:44 -03:00

45 lines
727 B
CSS

@import url('http://fonts.googleapis.com/css?family=Rationale');
.selected button {
background-color: rgba(158,158,158,0.2);
}
md-card-content.terminal {
background-color: rgb(113, 113, 113);
padding: 0;
}
.terminal {
background-color: rgb(113, 113, 113);
}
.terminal .xterm-viewport {
background-color: rgb(113, 113, 113);
}
.terminal .xterm-rows {
background-color: #000;
}
.clock {
font-family: 'Rationale', sans-serif;
font-size: 3.0em;
color: #1da4eb;
text-align: center;
}
.welcome {
background-color: #e7e7e7;
}
.welcome > div {
text-align: center;
}
.g-recaptcha div {
margin-left: auto;
margin-right: auto;
margin-bottom: auto;
margin-top: 50px;
}