-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (90 loc) · 1.64 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (90 loc) · 1.64 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
div.container{
/*background-color:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7))*/
margin: 1rem 25%;
}
div.gallery {
margin: 0.625rem;
border: 0.0625rem solid #ccc;
display:inline-block;
width: 20%;
}
div.gallery:hover {
border: 0.19rem solid blue;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
font-size: 1.5rem;
color:gold;
background-color: rgba(0,0,0,0.7);
}
div.preview{
padding: 2rem 0 3rem 0;
height: auto;
display:block;
clear:both;
margin:0 22.5%;
position: relative;
}
div.preview:hover img{
opacity: 0.3;
}
div.preview:hover .middle{
opacity: 1;
}
div .text {
font-family: chen;
letter-spacing: 0.5rem;
font-size: 4rem;
background-color: rgba(255,223,0,1);
border-radius: 1rem;
padding: 0.5rem 0.75rem;
}
div .middle {
transition: 1.5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
}
footer{
left:0;
position: fixed;
bottom: 0;
width: 100%;
height: 2rem;
background-color: black;
}
footer p{
text-align: center;
font-size: 1rem;
color:white;
margin:0.5rem 1rem 0.5rem auto;
}
@font-face {
font-family: 'Chen';
src: url('Chernobyl.otf');
font-weight: normal;
font-style: normal;
}
body{
background-color: rgba(0,0,0,0.5);
background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("images/logo.png");
background-size: cover ;
background-repeat: no-repeat;
background-attachment: fixed;
overflow: auto;
padding:0;
margin:0;
top:0;
left:0;
width: 100%;
height: 100%;
}