-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
98 lines (81 loc) · 1.3 KB
/
style2.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
@font-face {
font-family: italic;
src: url(./MAZIUSREVIEW20.09-Extraitalic.ttf);
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Gilroy-Medium";
}
html,
body {
height: 100%;
width: 100%;
}
#main {
width: 100%;
}
#loader {
position: absolute;
top: 100%;
width: 100%;
z-index: 999;
height: 0vh;
}
#home {
width: 100%;
background-color: #FDF9F8;
}
#home #nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 5vw;
width: 100%;
height: 100px;
}
#nav a {
position: relative;
text-decoration: none;
text-transform: uppercase;
font-weight: 300;
font-size: 12px;
color: #000;
}
#nav a .line {
position: absolute;
display: inline-block;
right: 0;
bottom: 0;
width: 100%;
right: 0;
height: 1px;
transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
background-color: #000;
}
#nav a:hover .line {
width: 0;
}
#write{
width: 100%;
margin-top: 5vw;
display: flex;
justify-content: center;
}
#write h1 {
font-size: 8vw;
}
#write h1 #font{
font-family: italic;
color: #14CF93;
}
#imgg{
width: 100%;
margin-top: 6vw;
display: flex;
justify-content: center;
}
#imgg img{
height: 28vw;
}