-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
79 lines (70 loc) · 1.58 KB
/
styles.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
74
75
76
77
78
79
.modal-fb-download {
position: fixed;
display: flex;
width: 100%;
height: 100vh;
top: 0;
left: 0;
background-color: #00000087;
overflow: hidden;
overflow-y: auto;
z-index: 1072;
outline: 0;
font-family: 'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
.modal-content {
height: 300px;
min-width: 500px;
margin: auto auto;
background-color: #FFF;
box-shadow: 1px 1px 10px 1px;
border-radius: .25rem;
}
.modal-body {
padding: 0 2rem 2rem;
}
.modal-header {
display: flex;
padding: 1rem 1.5rem
}
.close {
margin: -1rem -1rem -1rem auto;
cursor: pointer;
background-color: transparent;
border: 0;
appearance: none;
float: right;
font-size: 1.5rem;
font-weight: 700;
line-height: 1;
color: #000;
text-shadow: 0 1px 0 #fff;
opacity: .5;
&:hover {
opacity: .75;
}
}
h2 {
font-weight: normal;
text-align: center;
}
.video-sources {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding-left: 0;
margin-top: 0;
margin-bottom: 0;
list-style: none;
}
a {
display: block;
padding: .5rem 1rem;
color: #007bff;
text-decoration: none;
background-color: transparent;
&:hover {
color: #0056b3;
text-decoration: underline;
}
}
}