forked from dhairyagothi/100_days_100_web_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparallal.css
78 lines (74 loc) · 1.4 KB
/
parallal.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Roboto Condensed", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
min-height: 100vh;
overflow-x: hidden;
}
header{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: flex-end;
color: #359381;
font-weight: 700;
font-size: 32px;
padding: 20px;
padding-right: 20px;
gap: 325px;
z-index: 30;
}
nav ul{
display: flex;
flex-direction: row;
list-style: none;
gap:50px;
padding-right: 10px;
}
.active{
color: white;
background-color: #359381;
border-radius: 20px;
width: 100%;
}
nav ul :hover{
color: white;
background-color: #359381;
border-radius: 20px;
width: 100%;
}
.parallal{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
}
.text{
font-size: 90px;
position: relative;
color: #ffffff;
font-weight: bolder;
text-shadow: 2px -2px 8px black;
}
img{
position: absolute;
width: 100%;
top: 0;
left:0;
}
.content{
background: #01372d;
color: white;
font-size: 25px;
position: relative;
padding: 60px;
height: 100dvh;
}