-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiltering.css
More file actions
93 lines (83 loc) · 1.91 KB
/
Copy pathfiltering.css
File metadata and controls
93 lines (83 loc) · 1.91 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
* {
box-sizing: border-box;
scroll-behavior: smooth;
}
.column-padding .col-4{
padding: 5px;
}
/* Create three equal columns that floats next to each other */
.column {
display: none; /*Hide all elements by default */
}
/* Content */
.portfolio_part .content {
overflow: hidden;
position: relative;
height: 215px;
}
.content img{
height: 215px;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
}
.overlay-content{
text-transform: capitalize;
position: absolute;
top: 100%;
opacity: 0;
width: 100%;
height: 100% !important;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border-radius: 4px;
background-color: rgba(0, 0, 0, 0.5);
color: rgb(20, 213, 220) !important;
transition: all linear .9s !important;
cursor: pointer;
}
.content:hover .overlay-content{
position: absolute;
top: 0px;
opacity: 1;
}
/* The "show" class is added to the filtered elements */
.show {
display: block;
}
/* Style the buttons */
#myBtnContainer{
display: flex;
justify-content: center;
align-items: center;
/* margin: 150px 0 0 0; */
}
.button {
border: none;
outline: none;
min-height: 40px;
min-width: 120px;
margin:0px 5px 40px 5px;
border-radius: 5px;
background-color: rgb(239, 239, 239);
color: rgb(30, 187, 163);
border: 1px solid rgb(30, 187, 163);
text-transform: capitalize;
cursor: pointer;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.button.active {
background-color: rgb(30, 187, 163);
color: rgb(239, 239, 239);
outline: none !important;
}
.button:focus{
outline: none;
}