-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (86 loc) · 1.6 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
*{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
box-sizing: border-box;
}
nav{
height: 8vh;
width: 100vw;
background-color: blue;
color: white;
z-index: 100;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: fixed;
}
section{
height: fit-content;
width: 100vw;
background-color: gray;
color: white;
padding: 6vh 7vw 6vh 7vw;
text-align: center;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
align-content: center;
}
section h1{
text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
section h4{
font-weight: 100;
}
section a{
color: white;
}
section:nth-of-type(3) img{
width: 50vh;
height: 50vh;
aspect-ratio: 1/1;
margin: 5vh 5vw 2.5vh 5vw;
}
section:nth-of-type(1){
height: 80vh;
padding-top: calc(8vh + 25px);
}
section:nth-of-type(2){
background-color: rgb(160, 160, 160);
}
section:nth-of-type(3){
padding: 1vw;
}
section:nth-of-type(4){
height: 30vh;
background-color: rgb(148, 148, 148);
margin: 0;
padding: 0;
overflow: hidden;
}
#titlePlusParallax{
position: relative;
}
#titlePlusParallax h1{
position: absolute;
z-index: 10;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
section:nth-of-type(4) img{
width: 100vw;
margin: 0;
padding: 0;
}
#imageContainer{
width: 100vw;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}