-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
114 lines (107 loc) · 1.98 KB
/
style.scss
File metadata and controls
114 lines (107 loc) · 1.98 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
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
figure{
display: inline-block;
margin: 0;
position: relative;
}
img{
width: 400px;
max-width: 100%;
}
.bg-yellow{
background-color: #b1b145;
}
.bg-green{
background-color: #c8e6c9;
}
.bg-grey{
background-color: #dddddd;
}
.bg-orange{
background-color: #ffecb3;
}
.bg-thistle{
background-color: thistle;
}
.bg-lightblue{
background-color: lightblue;
}
/* image filter effect */
.colorEffect-imgFilter-1{
filter: contrast(180%);
}
.colorEffect-imgFilter-2{
filter: contrast(380%);
}
/* parent's bg effect */
.colorEffect-parentBG>img{
display: block;
opacity: 0.85;
}
/* parent's bg effect */
.colorEffect-parentBG-Img{
display: inline-block;
height: 300px;
width: 300px;
background-blend-mode: luminosity;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
/* end parent's bg effect */
.bg-img-1{
background-image: url(./01.jpg);
}
.bg-img-4{
background-image: url(./04.jpg);
}
/* parent's bg effect responsive */
.colorEffect-parentBG-ImgRes{
display: inline-block;
background-blend-mode: luminosity;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
.colorEffect-parentBG-ImgRes>img{
display: block;
opacity: 0;
visibility: hidden;
}
/* not applicable for the output project */
body{
padding-top: 1rem;
padding-bottom: 1rem;
}
figure.fig-1:after{
content: '';
position: absolute;
height: 100%;
width: 100%;
background-color: yellow;
top: 0;
left: 0;
opacity: 0.4;
}
table{
width: 100%;
text-align: left;
border-spacing: 0px;
margin-bottom: 1rem;
border: 1px solid #00a3c5;
background-color: #f1f1f1;
}
table tr>th{
background-color: #00a3c5;
color: white;
padding: 0.5rem 0.5rem;
}
table tr>*{
border: 1px solid #00a3c5;
padding: 0.25rem 0.5rem;
}
table ul{
padding-left: 20px;
}
table ul>li:empty{
display: none;
}