_login.scss
1.89 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#login-modal {
border: 1px solid $shadow;
width: 90%;
top: $unit * 5;
left: 50%;
margin-left: -45%;
.item {
margin-top: $unit;
}
h1 {
padding: $unit $unit * 1.5;
border-bottom: 1px solid $lightgrey;
font-size: $unit * 2;
line-height: $unit * 3;
font-weight: 700;
position: relative;
}
.avatar {
display: inline-block;
width: 96px;
height: 96px;
background: transparent url(../img/avatar.png?1) center center no-repeat;
background-size: 96px 96px;
}
.button {
text-transform: uppercase;
border: 1px solid $shadow;
}
form {
label {
border: 0;
}
input {
border-bottom: 1px solid $darkgrey;
color: $darkgrey;
font-size: 16px;
&:focus {
border-bottom: 2px solid $lightblue;
color: $black;
}
}
p {
margin: 20px 10px 20px 26px;
}
.button {
width: 100%;
}
.login-actions {
a {
float: left;
font-size: 16px;
color: $lightblue;
margin: 0 $unit;
cursor: pointer;
&:hover {
text-decoration: underline;
color: $blue;
}
}
a + a {
float: right;
}
}
&.register-form {
input {
color: $purple;
border-bottom: 1px solid $purple;
&:focus {
border-bottom: 2px solid $purple;
}
&.ckbox {
border-bottom: 0;
}
}
.disclaimer {
margin: 0;
margin-top: $unit / 2;
margin-bottom: $unit / 2;
color: $darkgrey;
span {
cursor: pointer;
text-decoration: underline;
}
}
button {
margin-bottom: $unit * 5;
}
.input-label {
display: none;
}
select {
border: 1px solid $darkgrey;
width: 100%;
float: none;
}
}
}
}