blob: 8917ebb9f72b6f0c68f50b9c7ec95949ac6502f5 (
plain)
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
118
119
|
.signup-header {
width:100%;
line-height: 33px;
padding: 0 1em 0.2em;
background: #EEE;
}
.signup-team__container {
padding: 100px 0px 50px 0px;
max-width: 340px;
margin: 0 auto;
font-size: 1.1em;
position: relative;
h1, h2, h3, h4, h5, h6, p {
line-height: 1.3;
}
h2 {
font-weight: 600;
margin-bottom: 0.5em;
letter-spacing: -0.5px;
font-size: em(28px);
}
h3 {
font-weight: 600;
margin: 0 0 1.3em 0;
font-size: 1.4em;
}
h4 {
font-size: em(18px);
font-weight: 600;
margin-bottom: 1em;
&.text--light {
font-weight: 300;
color: #999;
}
}
p {
color: #555;
line-height: 1.5;
margin-bottom: 1em;
.black, &.black {
color: #000;
}
}
form {
margin-bottom: 0.8em;
}
.external-link {
position: absolute;
bottom: 0;
left: 0;
}
.signup-team__name {
font-size: 2.2em;
font-weight: 600;
text-transform: uppercase;
}
.signup-team__subdomain {
font-size: 1.5em;
padding-left: 1em;
}
.form-control {
height: em(38px);
}
.btn {
padding: em(7px) em(15px);
font-weight: 600;
font-size: em(13px);
&.btn-default {
color: #444;
}
.glyphicon {
&.glyphicon-ok, &.glyphicon-refresh {
margin-right: 0.3em;
left: -5px;
font-size: 0.9em;
}
&.glyphicon-chevron-right {
margin-left: 0.3em;
font-size: 0.8em;
right: -2px;
top: 0px;
}
&.glyphicon-chevron-left {
margin-right: 0.3em;
font-size: 0.8em;
left: -2px;
top: 0px;
}
}
}
.has-error {
.control-label {
margin-top: 5px;
}
}
.reset-form {
@include border-radius(3px);
position: relative;
font-size: 0.95em;
p {
color: inherit;
}
}
}
.signup-team-confirm__container {
padding: 100px 0px 100px 0px;
}
.signup-team-logo {
display: none;
width: 210px;
margin: 0 0 2em 0;
}
.signup-team-login {
padding-bottom: 10px;
font-weight: 700;
}
|