-
Notifications
You must be signed in to change notification settings - Fork 7
/
style.css
124 lines (106 loc) · 2.22 KB
/
style.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
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
120
121
122
123
124
.modal-dialog > .outer-container {
width: 100%;
height: 100%;
position: absolute;
top: 0;
}
.modal-dialog > .outer-container:before {
content: "";
display: inline-block;
height: 100%;
width: 0.1rem;
margin-left: -0.1rem;
vertical-align: middle;
}
.modal-dialog .container {
width: 100%;
vertical-align: middle;
display: inline-block;
}
.modal-dialog .modal-dialog-message-container {
width: 96rem;
position: relative;
margin: 0 auto 13rem auto;
word-wrap: break-word;
}
.modal-dialog .modal-dialog-custom-group {
color: #ffffff;
text-align: center;
font-family: Fira Sans;
}
.modal-dialog .modal-dialog-custom-group.hidden {
display: none;
}
.modal-dialog-input-group {
text-align: center;
position: relative;
margin: 0 auto;
width: 70rem;
}
.modal-dialog-input-group input {
font-size: 3.8rem;
font-size: 3.8rem;
color: #ffffff;
text-align: center;
background: none;
border: none;
}
.modal-dialog-input-group .focus {
bottom: 0px;
width: 100%;
height: 0.4rem;
margin: 0.4rem auto 0 auto;
visibility: hidden;
background: #00caf2;
}
.modal-dialog-input-group .clear:before {
vertical-align: top;
line-height: 3rem;
}
.modal-dialog-input-group .clear {
position: absolute;
left: calc(100% - 4rem);
border: 0;
margin: 0;
padding: 0;
width: 3rem;
height: 3rem;
border-radius: 50%;
opacity: 0;
color: #ffffff;
cursor: pointer;
background: #999999;
}
.modal-dialog-input-group :focus ~ .focus {
visibility: visible;
}
.modal-dialog-input-group :focus ~ .clear,
.modal-dialog-input-group :focus.clear {
opacity: 1;
}
.modal-dialog .modal-dialog-message {
font-size: 3.8rem;
font-style: italic;
color: #ffffff;
text-align: center;
font-family: Fira Sans;
font-weight: 100;
margin-bottom: 3.4rem;
}
.modal-dialog .modal-dialog-message.hidden {
display: none;
}
.modal-dialog .modal-dialog-button-group {
white-space: nowrap;
/* use inline-block to wrap content */
display: inline-block;
}
.modal-dialog.modal-dialog-opened .modal-dialog-button-group {
transition: transform 0.2s ease;
}
.modal-dialog .modal-dialog-button-group > * {
margin-right: 4.4rem;
}
.modal-dialog .modal-dialog-button-group > *:last-child {
margin-right: 0;
}