-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_wsmodal.scss
73 lines (64 loc) · 1.52 KB
/
_wsmodal.scss
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
.wsmodal {
visibility: hidden;
top: 100px;
left: 50%;
margin-left: -300px;
width: 520px;
background: #eee no-repeat -200px -80px;
position: fixed;
z-index: 101;
padding: $base-spacing-unit;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,.4);
text-shadow:1px 1px 0 #fff;
h3 {
margin-top:0 !important;
}
}
.wsmodal__bg {
position: fixed;
height: 100%;
width: 100%;
background: #000;
opacity: 0.7;
z-index: 100;
display: none;
top: 0;
left: 0;
}
.wsmodal__close-btn {
font-size: 2em;
line-height: .5;
position: absolute;
top: 8px;
right: 8px;
color: darken($base-ui-color, 20);
font-weight: bold;
cursor: pointer;
text-decoration: none !important;
&:active{
color: darken($base-ui-color, 40);
}
}
.wsmodal--tiny { width: 200px; margin-left: -140px;}
.wsmodal--small { width: 400px; margin-left: -240px;}
.wsmodal--large { width: 600px; margin-left: -340px;}
.wsmodal--huge { width: 800px; margin-left: -440px;}
@if $responsive == true{
@include media-query(lap){
.wsmodal {
width: 70% !important;
margin-left: -36% !important;
}
}
@include media-query(palm){
.wsmodal {
top:$base-spacing-unit !important;
width: auto !important;
left: $base-spacing-unit !important;
margin-left: -$half-spacing-unit !important;
right:$half-spacing-unit !important;
padding-bottom:$half-spacing-unit !important;
}
}
}