-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.scss
77 lines (65 loc) · 1.1 KB
/
auth.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
html, body, body > div, form{
height:100%;
width:100%;
color: #ccc;
}
.no-select{
-webkit-user-select: none; /* Chrome */
user-select: none; /* Likely future */
}
.mainImage{
padding: 1em;
height: 20%;
width: 100%;
padding-top: 36px;
background-color: #333;
& img {
color: #ccc;
}
}
.input-group{
width:100%;
padding: 0.5em;
& input {
border-radius: 0.25em !important;
}
}
.nav-pills .nav-link.active, .show > .nav-pills .nav-link, .btn-primary{
color: #fff !important;
background-color: #14b0b1 !important;
border-color: #14b0b1 !important;
border-radius: 0.25em !important;
}
.submitRegion{
padding: 0 6em;
}
.registerSubmit{
padding-top: 24px;
}
.nav .nav-item a {
color: #14b0b1;
}
.title-bar {
width: 100%;
height: 36px;
position: fixed;
top:0;
display: flex;
align-items: center;
z-index: 100;
-webkit-app-region: drag;
}
.content{
height: 80%;
width:100%;
background-color: #333;
padding-top: 16px;
padding-bottom: 16px;
}
.loginInput{
color: #ccc;
}
.checkbox label input{
position: relative;
top: -1px;
}