forked from panditakshay402/web-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (122 loc) · 2.38 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
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
143
144
145
146
147
148
header{
width: 100%;
height: 100px;
top: 0;
left: 0;
right: 0;
/* z-index: 999; */
}
.navi{
width: 100%;
height: 100px;
display: flex;
justify-content: space-between;
align-items: center;
background: #f8a5a5;
background-attachment: fixed;
position: fixed;
}
nav li {
display: inline-block;
margin-right: 0px;
}
nav li.dropdown:hover > .dropdown-menu {
display: block;
}
nav .dropdown-menu {
display: none;
width: 520px;
position: absolute;
z-index: 999;
}
nav .dropdown-menu li {
display: block;
}
css
/* Set the background color for the dropdown menu */
.dropdown {
background-color: #fff;
}
/* Set the background color for the dropdown menu options */
.dropdown .dropdown-menu {
background-color: #f5d3d3;
color: #fff;
font-size: 16px;
border-radius: 15px;
}
.navi .logo img{
padding-left: 5px;
width: 150px;
height: 90px;
}
.navi nav{
width: 850px;
display: flex;
justify-content: space-around;
}
.navi nav a{
text-decoration-style: solid;
color: brown;
text-decoration: wavy;
text-transform: uppercase;
}
.navi button{
padding: 12px 45px;
text-align: center;
font-size: 20px;
color: #fff;
border: none;
background-color: rgba(31, 1, 1, 0.6);
border-radius: 10px;
margin-right: 10px;
}
.bg{ width:100% ;
height: 1500px;
background-image: url(img/dr.jpg);
background-repeat: no-repeat;
background-size:cover;
background-attachment: fixed;
}
.reqB{
margin-left: 800px;
margin-top: 180px;
}
.para{
margin-top: 100px;
}
/* .para p{
padding: 90px 790px;
text-decoration: solid;
color: #fd7272;
font-size: 30px;
} */
.reqB p{
text-decoration: solid;
color: #fd7272;
font-size: 35px;
/* margin-bottom: 10px;
padding-bottom: 10px; */
}
.reqB button{
padding: 12px 45px;
font-size: 20px;
/* margin-top: 10px; */
border: none;
color: #fff;
border-radius: 10px;
background-color: rgba(39, 1, 1, 0.8);
}
.vid video{
/* display: flex;
justify-content: space-between; */
width: 600px;
border-radius: 25px;
box-shadow: 0px 0px 20px rgb(236, 11, 11);
}
.vid video:first-child{
margin-left: 0px;
margin-top: 0px;
}
.vid video:last-child{
margin-left: 120px;
}