-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (116 loc) · 2.35 KB
/
style.css
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
115
116
117
118
119
120
121
122
123
124
125
@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
body {
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
padding-top: 2rem;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.row {
display: flex;
flex-flow: wrap;
align-items: center;
justify-content: center;
flex-direction: row;
}
.aks-figure {
width: 23%;
padding-bottom: 6px;
text-align: center;
background: white;
box-shadow: 0 0 26px 1px #00000024;
overflow: hidden;
border-radius: 8px;
font-weight: 500;
display: block;
align-items: center;
flex-direction: column;
justify-content: center;
transition: all 0.2s ease-in-out;
margin: 1%;
}
.aks-figure img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
pointer-events: none;
margin-bottom: 6px;
}
.aks-figcaption {
}
[aks-image-filter="grayscale"],
.aks-filter-grayscale {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
}
[aks-image-filter="sepia"],
.aks-filter-sepia {
filter: sepia(100%);
-webkit-filter: sepia(100%);
}
[aks-image-filter="littleblur"],
.aks-filter-littleblur {
filter: blur(2px);
-webkit-filter: blur(2px);
}
[aks-image-filter="moreblur"],
.aks-filter-moreblur {
filter: blur(10px);
-webkit-filter: blur(10px);
}
[aks-image-filter="littlebrightness"],
.aks-filter-littlebrightness {
filter: brightness(0.5);
-webkit-filter: brightness(0.5);
}
[aks-image-filter="morebrightness"],
.aks-filter-morebrightness {
filter: brightness(150%);
-webkit-filter: brightness(150%);
}
[aks-image-filter="littlecontrast"],
.aks-filter-littlecontrast {
filter: contrast(0.5);
-webkit-filter: contrast(0.5);
}
[aks-image-filter="morecontrast"],
.aks-filter-morecontrast {
filter: contrast(200%);
-webkit-filter: contrast(200%);
}
[aks-image-filter="saturated"],
.aks-filter-saturated {
filter: saturate(200%);
-webkit-filter: saturate(200%);
}
[aks-image-filter="invertfilter"],
.aks-filter-invertfilter {
filter: invert(1);
-webkit-filter: invert(1);
}
[aks-image-filter="hue"],
.aks-filter-hue {
filter: hue-rotate(140deg);
-webkit-filter: hue-rotate(140deg);
}