login.scss
703 Bytes
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
.modal-content {
padding: 40px;
.modal-header {
border-bottom: 0;
text-align: center;
}
form {
margin-bottom: 30px;
button {
margin-top: 20px;
text-transform: uppercase;
}
}
}
.strike {
display: block;
text-align: center;
overflow: hidden;
white-space: nowrap;
padding: 25px 0;
> span {
position: relative;
display: inline-block;
text-transform: uppercase;
}
> span:before, > span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 1px;
background: black;
}
> span:before {
right: 100%;
margin-right: 15px;
}
> span:after {
left: 100%;
margin-left: 15px;
}
}