-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
115 lines (97 loc) · 1.77 KB
/
Copy pathindex.css
File metadata and controls
115 lines (97 loc) · 1.77 KB
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
/* index.css */
/* Reset default margin and padding for all elements */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global styles */
body {
font-family: Arial, sans-serif;
background-image: url("abcd.jpg");
background-color: #f7f7f7;
color: #333;
}
header {
background-color: #007bff;
padding: 20px 0;
}
.navbar {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.navbar li {
display: inline-block;
}
.navbar a {
color: #fff;
text-decoration: none;
padding: 10px 20px;
transition: background-color 0.3s ease;
}
.navbar a:hover {
background-color: #0056b3;
}
main {
margin: 50px auto;
max-width: 600px;
text-align: center;
}
.registration-section {
background-color: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 28px;
margin-bottom: 30px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropbtn {
background-color: #007bff;
color: #fff;
padding: 12px 24px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #fff;
min-width: 160px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 4px;
}
.dropdown-content a {
color: #333;
padding: 12px 16px;
text-decoration: none;
display: block;
transition: background-color 0.3s ease;
}
.dropdown-content a:hover {
background-color: #f0f0f0;
}
.dropdown:hover .dropdown-content {
display: block;
}
.login-btn {
background-color: #007bff;
color: #fff;
padding: 12px 20px;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.login-btn:hover {
background-color: #0056b3;
}