-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathcore-style.css
135 lines (125 loc) · 2.41 KB
/
core-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
126
127
128
129
130
131
132
133
134
135
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');
@import '../css/font-awesome.min.css';
@import '../css/pe-icon-7-stroke.css';
@import '../css/magnific-popup.css';
@import '../css/animate.css';
* {
margin: 0;
padding: 0;
}
*:focus {outline:none !important}
.gallery_area {
height: 40%;
width: 100%;
z-index: 1;
}
.btn{
margin:1em 1em 0 1em;
padding: 2px 1rem!important;
border: 1px solid #e74c3c;
background-color: #fff;
}
.btn:focus{
border: none;
box-shadow: none;
transition: border 0.9s;
}
.portfolio-menu button {
background-color: transparent;
font-size: 15px;
color: #838383;
padding: 0 0px;
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.portfolio-menu button.active,
.portfolio-menu button:hover {
color: #1d1d1d;
}
.portfolio-menu button:focus {
box-shadow: none;
}
.gallery_menu {
margin-bottom: 2rem;
}
button{
padding: 5px!important;
}
.column_single_gallery_item {
margin-bottom: 30px;
}
.column_single_gallery_item img {
width: 100%;
}
.hover_overlay {
position: absolute;
width: calc(100% - 30px);
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
top: 0;
left: 15px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
-webkit-transition-duration: 500ms;
transition-duration: 500ms;
}
.hover_overlay a {
font-size: 30px;
color: #fff;
}
.column_single_gallery_item:hover .hover_overlay {
opacity: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
img#one{
z-index: -1;
position: fixed;
opacity: 0.4;
top: 8rem;
left: 30rem;
width: 15vh;
}
img#two{
position: fixed;
opacity: 0.7;
width: 10rem;
bottom: 0;
right: 0;
z-index: -1;
}
img#three{
position: fixed;
width: 20rem;
opacity: 0.4;
padding: 0 0;
z-index: -1;
}
img#four{
position: fixed;
width: 10rem;
right: 40rem;
bottom: 10rem;
z-index: -1;
opacity: 0.5;
}
#color_white{
color: #000;
padding: 0 2px;
background: #ecf0f1;
border: 1px solid #3498db;
transition: background 0.7s;
}
#color_white:hover{
background: #3498db;
border:0;
transition: background 0.7s;
}