-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
159 lines (143 loc) · 3.08 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
149
150
151
152
153
154
155
156
157
158
159
/* Ensure the body and html span the full width and height */
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
/* Set the container to span the entire width */
.container {
width: 100%; /* Ensures it spans the full width */
background-color: #059426;
height: auto;
box-sizing: border-box; /* Ensures padding doesn't affect the width */
}
/* Make sure other elements don't introduce unwanted margins or padding */
.cont {
display: flex;
justify-content: space-between;
width: 100%; /* Ensure it matches the container's width */
}
footer {
gap: 10px;
justify-content: center;
display: flex;
text-decoration: none;
background-color: white;
width: 100%; /* Ensure footer spans full width */
list-style: none;
padding: 0; /* Remove any extra padding */
}
input {
border: none;
outline: none;
border-radius: 3px;
width: calc(100% - 6px); /* Adjust width for padding/margins */
height: 4vh;
margin-top: 12px;
font-size: smaller;
}
*{
font-family: Arial, Helvetica, sans-serif;
font-size: small;
padding: 2px;
margin-right: 3px;
}
body{
background-color: #d5fddf;
}
img{
/* background-size:cover ; */
/* background-repeat:no-repeat ; */
height: 27px;
width: 30px;
/* border-radius: 5px; */
}
/* .menu{
position: relative;
} */
.menu ul{
list-style: none;
margin: 0;
padding: 12px;
display: flex;
flex-direction: column;
gap: 5px;
}
.menu ul li a{
color: white;
text-decoration: none;
/* border-radius: 4px; */
transition: background-color 0.3s;
/* padding: 8px 16px; */
display: block;
}
.menu ul li a:hover{
background-color: #07a82c;
}
.menu-button{
background: none;
border: none;
cursor: pointer;
padding-left: 6px;
padding-top: 6px;
/* text-decoration: none;
text-decoration: none;
color: #08d638;
display: block; */
/* transition: background-color 0.3s; */
}
.menu-button:hover{
background-color: #07a82c;
border-radius: 5px;
}
.menu-list{
list-style: none;
margin: 30px;
padding: 0;
position: absolute;
/* overflow: hidden; */
top: 50px;
right: 10px;
/* background-color: #333; */
border-radius: 5px;
display: none;
/* box-shadow: 0 4px 8px rgb(0, 0, 0, 0.2); */
}
.menu-list.expanded{
height: auto;
padding: 10px 0;
}
.logoBtn{
display: flex;
justify-content: center;
width: 155px;
height: 25px;
left: 3px;
margin-top: 8px;
background: none;
border: none;
}
.logo{
position: absolute;
width: 150px;
cursor: pointer;
}
footer{
gap: 10px;
justify-content: center;
display: flex;
text-decoration: none;
background-color: white;
width: 100%;
list-style: none;
}
.MainContent{
flex: 1;
}
footer a{
font-size: 10px;
color: #059426;
list-style: none;
text-decoration: none;
}