-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
87 lines (74 loc) · 1.39 KB
/
index.css
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
@import 'common/css/constants.css';
.login-page {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
width: 375px;
padding: 0 30px;
margin: 40px 0 0;
}
.login-page h2 {
margin: 20px 0 0;
}
.login-form {
margin: 60px 0 0;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.login-form label {
margin: 0 0 10px;
font-weight: 500;
}
.login-form select,
.login-form input {
outline: none;
}
#login-button {
height: 56px;
width: 128px;
background: var(--middle-red);
border-radius: 8px;
border: 1px solid transparent;
font-weight: var(--font-weight-hard);
line-height: 20px;
color: var(--white);
}
#login-button:hover {
background-color: var(--hard-red);
cursor: pointer;
}
#client-id {
width: 315px;
margin: 0 0 40px;
border-radius: 8px;
border: 1px solid transparent;
height: 40px;
padding: 0 16px;
font-size: var(--font-size-text);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.unselected-environment,
.unselected-client-id {
display: none;
position: absolute;
color: var(--hard-red);
}
.unselected-environment {
top: 70px;
}
.unselected-client-id {
top: 185px;
}
.show {
display: unset;
}
@media (min-width: 768px) {
.login-page {
width: unset;
}
}