-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (69 loc) · 1.43 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
* {
margin: 0px;
}
.parallax1 {
background-image: url("./image/giphy.webp");
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 800px;
}
.cl1 {
background: linear-gradient(360deg, rgb(243, 241, 243)2%, hwb(329 19% 49% / 0.592)57%);
line-height: 60px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
.cl2 {
background: linear-gradient(360deg, rgb(243, 241, 243)2%, hwb(329 19% 49% / 0.592)57%);
line-height: 60px;
text-align: center;
padding-top: 90px;
padding-bottom: 500px;
}
.nav {
text-align: center;
background: none;
}
.barredenavigation {
width: 100%;
padding-top: 25px;
padding-bottom: 25px;
background: linear-gradient(360deg, rgb(243, 241, 243)2%, hwb(329 19% 49% / 0.592)57%);
}
.menu {
display: flex;
justify-content: space-around;
align-items: center;
position: relative;
overflow: visible;
}
.menu>li {
float: left;
color: black;
font-weight: bolder;
width: 200px;
height: 40px;
line-height: 40px;
cursor: pointer;
font-size: 18px;
z-index: 1000;
}
a {
text-decoration: none;
color: rgb(6, 6, 6);
}
a:hover {
color: #d01e1e;
}
.menu>li:hover .sub-menu li {
transform: scale(1);
}
.menu>li:hover .sub-menu {
transform: scale(1);
}
nav ul {
list-style-type: none;
}