Files

130 lines
2.2 KiB
CSS
Raw Permalink Normal View History

2016-12-01 12:17:26 -08:00
.theme-body {
background-color: #f4f5f7;
color: #1a1a1a;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
2016-12-01 12:17:26 -08:00
}
.theme-navbar {
background-color: #fff;
border-bottom: 1px solid #e1e4e8;
color: #1a1a1a;
2016-12-01 12:17:26 -08:00
font-size: 13px;
font-weight: 400;
height: 52px;
2016-12-01 12:17:26 -08:00
overflow: hidden;
padding: 0 16px;
2016-12-01 12:17:26 -08:00
}
.theme-navbar__logo-wrap {
display: inline-block;
height: 100%;
overflow: hidden;
padding: 12px 15px;
2016-12-01 12:17:26 -08:00
width: 300px;
}
.theme-navbar__logo {
height: 100%;
max-height: 26px;
2016-12-01 12:17:26 -08:00
}
.theme-heading {
font-size: 20px;
font-weight: 600;
margin-bottom: 16px;
2016-12-01 12:17:26 -08:00
margin-top: 0;
}
.theme-panel {
background-color: #fff;
border: 1px solid #e1e4e8;
border-radius: 12px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
padding: 32px;
2016-12-01 12:17:26 -08:00
}
2016-12-01 14:06:08 -08:00
.theme-btn-provider {
background-color: #fff;
border: 1px solid #d0d5dd;
color: #1a1a1a;
min-width: 260px;
2016-12-01 14:06:08 -08:00
}
.theme-btn-provider:hover {
background-color: #f9fafb;
border-color: #b0b5bd;
color: #1a1a1a;
2016-12-01 14:06:08 -08:00
}
2016-12-01 12:17:26 -08:00
.theme-btn--primary {
background-color: #1a1a1a;
2016-12-01 12:17:26 -08:00
border: none;
color: #fff;
min-width: 200px;
padding: 8px 16px;
2016-12-01 12:17:26 -08:00
}
.theme-btn--primary:hover {
background-color: #333;
2016-12-01 12:17:26 -08:00
color: #fff;
}
.theme-btn--success {
background-color: #16a34a;
2016-12-01 12:17:26 -08:00
color: #fff;
width: 260px;
2016-12-01 12:17:26 -08:00
}
.theme-btn--success:hover {
background-color: #15803d;
2016-12-01 12:17:26 -08:00
}
.theme-form-row {
display: block;
margin: 16px auto;
2016-12-01 12:17:26 -08:00
}
.theme-form-input {
border-radius: 8px;
border: 1px solid #d0d5dd;
color: #1a1a1a;
2016-12-01 12:17:26 -08:00
display: block;
font-size: 14px;
height: 40px;
line-height: 1.5;
2016-12-01 12:17:26 -08:00
margin: auto;
padding: 8px 12px;
transition: border-color 0.15s ease, box-shadow 0.15s ease;
width: 260px;
2016-12-01 12:17:26 -08:00
}
.theme-form-input:focus,
.theme-form-input:active {
border-color: #4A90D9;
box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
2016-12-01 12:17:26 -08:00
outline: none;
}
.theme-form-label {
font-size: 14px;
font-weight: 500;
2016-12-01 12:17:26 -08:00
margin: 4px auto;
position: relative;
text-align: left;
width: 260px;
2016-12-01 12:17:26 -08:00
}
2017-11-09 16:20:20 +01:00
.theme-link-back {
margin-top: 8px;
2017-11-09 16:20:20 +01:00
}
.theme-remember-me {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
font-size: 14px;
width: 260px;
margin: 4px auto;
}