Farmbot-Web-App/frontend/css/static_pages.scss

82 lines
1.4 KiB
SCSS
Raw Permalink Normal View History

2017-08-07 11:51:47 -06:00
.static-page {
2017-08-07 13:02:35 -06:00
min-height: 100vh;
max-height: 100%;
2018-11-30 19:41:50 -07:00
.row {
2017-08-07 11:51:47 -06:00
margin: 0 auto;
}
2018-09-13 14:26:53 -06:00
background: linear-gradient(-135deg, #6db1ec, #35a274);
2017-08-09 14:54:53 -06:00
padding-top: 4rem;
2017-08-07 11:51:47 -06:00
h1,
h2 {
font-family: "Roboto", Arial, Helvetica, sans-serif !important;
font-weight: 100 !important;
color: $white;
text-shadow: 0 0 25px rgba(0, 0, 0, 0.1), 0 0 25px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 3.4rem;
line-height: 3.6rem;
}
h2 {
2017-08-07 13:24:34 -06:00
margin-top: 1rem;
2018-11-30 19:41:50 -07:00
margin-bottom: 8rem;
2017-08-07 11:51:47 -06:00
font-size: 2.2rem;
line-height: 2.6rem;
}
2017-08-09 14:54:53 -06:00
input {
margin-bottom: 1rem;
}
2017-12-20 15:17:41 -07:00
.all-content-wrapper {
max-width: 50rem;
padding-left: 1rem;
padding-right: 1rem;
}
2017-08-07 11:51:47 -06:00
.widget-wrapper {
2018-11-30 19:41:50 -07:00
margin-top: 1.5rem;
text-align: start;
2017-08-09 14:54:53 -06:00
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
2017-08-07 11:51:47 -06:00
}
2017-08-07 14:26:46 -06:00
.inner-width {
2018-11-30 19:41:50 -07:00
margin: auto;
2017-08-07 14:26:46 -06:00
max-width: 1024px;
2018-11-30 19:41:50 -07:00
text-align: center;
2017-08-07 14:26:46 -06:00
}
2017-08-07 14:29:54 -06:00
.forgot-password {
display: inline-block;
2018-09-13 14:26:53 -06:00
color: $blue;
2017-08-07 14:29:54 -06:00
}
2017-12-19 14:19:59 -07:00
.tos {
2017-12-20 15:17:41 -07:00
margin-bottom: 1.5rem;
2017-12-19 14:19:59 -07:00
}
input[type="checkbox"] {
float: left;
margin-right: 0.5rem;
margin-top: 0.25rem;
}
a:link {
font-weight: 300;
color: $dark_gray;
}
a:visited {
color: $medium_gray;
}
a:hover {
font-weight: 500;
}
a:active {
color: $medium_gray;
font-weight: 500;
}
2017-12-20 15:17:41 -07:00
.fa-gear {
float: right;
}
.fa-external-link {
margin-left: 1rem;
margin-bottom: 0.5rem;
}
2018-12-03 14:36:43 -07:00
img {
width: 55%;
margin-bottom: 2rem;
}
2017-08-09 14:54:53 -06:00
}