-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
145 lines (121 loc) · 2.58 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@font-face {
font-family: 'Test';
font-weight: 400;
font-style: normal;
src: url("new_font.woff2") format('woff2');
}
* {
font-family: 'Test';
}
#form-div {
width: 30%;
}
#search-form {
position: relative;
left: 70%;
}
.invisible {
visibility: hidden;
}
.hide {
display:none;
}
.artImg {
width: 20%;
height: 20%;
margin: 10px 20px;
}
#artworks {
height: 200vh;
margin-top: 50px;
}
.search {
justify-self: center;
}
#page-nav {
margin-bottom: 50px;
}
#checkbox-select {
position: relative;
left: 22%;
}
#userAuth {
position:fixed;
right: 2%;
}
#btn-profile {
margin-right: 2px;
}
#btn-login {
margin-bottom: 2px;
}
.page-link{
font-size: 20px;
}
.container-fluid{
transform-style: preserve-3d;
}
.container-fluid .box{
position: relative;
width: 20%;
height: 20%;
margin: 30px 20px;
transform-style: preserve-3d;
perspective: 1000px;
cursor: pointer;
}
.container-fluid .box .body{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: 0.9s ease;
}
.container-fluid .box .body .imgContainer{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-style: preserve-3d;
}
.container-fluid .box .body .imgContainer img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: fill;
}
.container-fluid .box .body .content{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #333;
backface-visibility: hidden;
transform-style: preserve-3d;
transform: rotateY(180deg);
}
.container-fluid .box:hover .body{
transform: rotateY(180deg);
}
.container-fluid .box .body .content div{
transform-style: preserve-3d;
padding: 30px;
background-color: #b50938;
color: white;
transform: translateZ(150px);
font-size: 14px;
width: 95%;
}
.container-fluid .box .body .content div h3{
letter-spacing: 1px;
}
.fancy-border {
border: 25px solid #B88846;
border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='75'%3E%3Cg fill='none' stroke='%23B88846' stroke-width='2'%3E%3Cpath d='M1 1h73v73H1z'/%3E%3Cpath d='M8 8h59v59H8z'/%3E%3Cpath d='M8 8h16v16H8zM51 8h16v16H51zM51 51h16v16H51zM8 51h16v16H8z'/%3E%3C/g%3E%3Cg fill='%23B88846'%3E%3Ccircle cx='16' cy='16' r='2'/%3E%3Ccircle cx='59' cy='16' r='2'/%3E%3Ccircle cx='59' cy='59' r='2'/%3E%3Ccircle cx='16' cy='59' r='2'/%3E%3C/g%3E%3C/svg%3E") 25;
}