-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign.css
142 lines (139 loc) · 2.35 KB
/
design.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
@charset "utf-8";
/* CSS Document */
*{
box-sizing: border-box;
}
body {
background-color: #CFC6AA;
margin: 0px;
}
h1{
font-family: 'Alte Haas Grotesk';
font-style: regular; font-weight: 500;
top: 0;
bottom: 0;
font-size: 0.95vw;
letter-spacing: 0.11vw;
margin: 0px;
color: #000000;
}
h1 a{
text-decoration: none;
color: #000000;
}
h1 a:hover{
text-decoration: none;
color: white;
}
.left{
position: fixed;
height: 100%;
width: 80%;
top: 0;
left: 0;
padding: 7vmin;
}
.right{
position: fixed;
height: 100%;
width: 20%;
top: 0;
right: 0;
border-left: solid 0.12vmin #000000;
padding-left: 2vw;
padding-bottom: 2vw;
display: flex;
justify-content: left;
align-items: flex-end;
background-color: #CFC6AA;
}
.fit{
position: relative;
width: 100%;
height: 100%;
}
.fit img{
position: absolute;
width: 100%;
height: 100%;
object-fit: contain;
filter: drop-shadow(0px 1px 2px rgba(0,0,0,.03))
drop-shadow(0px 4px 2px rgba(0,0,0,.03))
drop-shadow(0px 8px 3px rgba(0,0,0,.03))
drop-shadow(0px 16px 4px rgba(0,0,0,.03))
drop-shadow(0px 32px 32px rgba(0,0,0,.07))
drop-shadow(0px 64px 64px rgba(0,0,0,.07));
}
iframe{
position: absolute;
width: 100%;
height: 100%;
}
@media (max-device-width: 1300px) {
h1{
font-family: 'Alte Haas Grotesk';
font-style: regular; font-weight: 500;
top: 0;
bottom: 0;
font-size: 5vw;
letter-spacing: 0.5vw;
line-height: 10vw;
margin: 0px;
color: #000000;
}
}
@media (max-device-width: 1300px) {
.left{
position: fixed;
height: 100%;
width: 80%;
top: 0;
left: 0;
padding: 7vmin;
display: none;
}
}
@media (max-device-width: 1300px) {
.right{
position: fixed;
height: 100%;
width: 20%;
top: 0;
right: 0;
border-left: solid 0.12vmin #000000;
padding-left: 2vw;
padding-bottom: 2vw;
display: flex;
justify-content: left;
align-items: flex-end;
background-color: #CFC6AA;
display: none;
}
}
.center {
width: 80%;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
display: flex;
flex-direction: column;
display: none;
}
@media (max-device-width: 1300px) {
.center {
width: 80%;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
display: flex;
flex-direction: column;
}
}