-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (116 loc) · 2.1 KB
/
styles.css
File metadata and controls
116 lines (116 loc) · 2.1 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
116
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
background: linear-gradient(135deg, #0b3d91, #d2d2d2, #ffd700);
background-size: cover;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 51, 0, 0.9);
color: #fff;
padding: 10px;
font-weight: bold;
position: relative;
}
#container {
display: flex;
flex: 1;
}
#sidebar {
width: 200px;
background-color: rgba(0, 51, 0, 0.8);
padding: 20px;
color: #fff;
border-right: 2px solid #333;
}
#content {
flex: 1;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-left: 1px solid #ddd;
}
h1 {
color: #0b3d91;
}
form {
margin-bottom: 20px;
}
input, textarea, button {
margin-right: 10px;
padding: 8px;
width: 90%;
display: block;
margin-bottom: 10px;
}
textarea {
height: 100px;
}
ul {
list-style-type: none;
padding: 0;
}
footer {
background-color: rgba(0, 51, 0, 0.9);
color: #fff;
text-align: center;
padding: 10px;
font-weight: bold;
}
gmp-map {
height: 300px;
width: 100%;
border: 2px solid #0b3d91;
border-radius: 5px;
}
/* Hamburger Icon */
.hamburger-icon {
display: flex;
flex-direction: column;
cursor: pointer;
gap: 5px;
padding: 10px;
}
.hamburger-icon span {
display: block;
width: 25px;
height: 3px;
background-color: #fff;
}
/* Dropdown Menu */
#dropdown-menu {
position: absolute;
top: 50px;
right: 10px;
background-color: rgba(0, 51, 0, 0.9);
border: 1px solid #333;
border-radius: 5px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
z-index: 1000;
list-style: none;
padding: 10px 0;
width: 150px;
text-align: left;
}
#dropdown-menu li {
padding: 10px;
}
#dropdown-menu li a {
color: #fff;
text-decoration: none;
display: block;
}
#dropdown-menu li:hover {
background-color: rgba(255, 255, 255, 0.2);
}
.hidden {
display: none;
}