-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (55 loc) · 1015 Bytes
/
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
html,
body {
margin: 0%;
padding: 0%;
width: 100%;
height: 100%;
font-family: "Monument Extended";
text-transform: uppercase;
background: #121212;
overflow: hidden;
}
.project-title h1 {
font-weight: 300;
}
.project-categ {
font-weight: lighter;
}
.cursor {
position: absolute;
width: 600px;
height: 400px;
top: 50%;
left: 50%;
transform: scale(0.1);
opacity: 0;
margin: -100px 0 0 -100px;
background: url(image-1.jpg) no-repeat 50% 50%;
background-size: cover;
z-index: 1;
}
.wrapper {
width: 80%;
margin: 180px auto;
height: 100%;
}
.project {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 12px;
display: flex;
align-items: center;
justify-content: space-between;
flex-basis: 1;
position: relative;
z-index: 2;
color: white;
mix-blend-mode: difference;
}
.project-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}