proposal-carousel.scss
1.83 KB
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
.proposal-carousel {
background-color: #f1f1f1;
border-radius: 5px;
overflow: hidden;
&-top {
position: relative;
color: #fff;
font-weight: bold;
font-size: 25px;
padding: 20px 15px;
&-triggers {
position: absolute;
right: 15px;
top: 20px;
button {
border: 1px solid #fff;
border-radius: 100%;
width: 15px;
height: 15px;
margin-right: 5px;
background-color: transparent;
cursor: pointer;
&.active {
background-color: #fff;
}
}
}
}
&-middle {
position: relative;
padding: 25px 30px;
min-height: 200px;
// cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
.content {
position: relative;
z-index: 2;
}
&-watermark {
position: absolute;
bottom: 1px;
left: -5px;
color: #ddd;
font-size: 150px;
font-weight: bold;
line-height: 116px;
z-index: 1;
}
}
&-bottom {
position: relative;
color: #fff;
padding: 10px;
font-weight: bold;
cursor: pointer;
z-index: 10;
&-icon {
position: absolute;
top: 10px;
right: 15px;
.glyphicon {
position: relative;
top: -2px;
background-color: #fff;
padding: 6px 5px 5px 6px;
border-radius: 100%;
}
}
}
}