Marthee commited on
Commit
750b266
·
verified ·
1 Parent(s): 6ea6028

Update static/MenuStyle.css

Browse files
Files changed (1) hide show
  1. static/MenuStyle.css +31 -9
static/MenuStyle.css CHANGED
@@ -1,23 +1,34 @@
1
 
2
  /********************************************************************/
3
  /* Style the tab */
 
4
  .tab {
5
- overflow: hidden;
 
 
 
 
6
  /* border: 1px solid black; */
7
  background-color:black;
8
- font-family: "acumin-pro", sans-serif;
9
  }
10
- .tab .dropbtn{
11
- float:right
12
- }
13
- .tablinks{
14
  color:white;
15
  font-size: 18px;
 
 
 
 
 
 
 
 
16
  }
17
  /* Style the buttons that are used to open the tab content */
18
  .tab button {
19
  background-color: inherit;
20
- float: left;
21
  border: none;
22
  outline: none;
23
  cursor: pointer;
@@ -45,6 +56,17 @@
45
  }
46
  /*********************************************************************/
47
 
 
 
 
 
 
 
 
 
 
 
 
48
  .container {
49
  /* display: inline-block; */
50
  cursor: pointer;
@@ -141,7 +163,7 @@ cursor: pointer;
141
  position: absolute;
142
  right: 0;
143
  top: 0;
144
- margin-top: 57px;
145
  background-color: #f9f9f9;
146
  min-width: 160px;
147
  max-width: 36%;
@@ -188,4 +210,4 @@ cursor: pointer;
188
  margin-bottom: -10px;
189
 
190
  /* margin-left: -200px; */
191
- }
 
1
 
2
  /********************************************************************/
3
  /* Style the tab */
4
+
5
  .tab {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: flex-start;
9
+ gap: 10px; /* Adds spacing between elements */
10
+ overflow: hidden;
11
  /* border: 1px solid black; */
12
  background-color:black;
13
+ /* font-family: "acumin-pro", sans-serif; */
14
  }
15
+
16
+ .tablinks {
 
 
17
  color:white;
18
  font-size: 18px;
19
+ text-decoration: none;
20
+ padding: 10px;
21
+ /* font-weight: bold; */
22
+ /* color: #000; */
23
+ /* background-color: #f0f0f0; */
24
+ border: none;
25
+ cursor: pointer;
26
+ font-family: Arial, sans-serif;
27
  }
28
  /* Style the buttons that are used to open the tab content */
29
  .tab button {
30
  background-color: inherit;
31
+ /* float: left; */
32
  border: none;
33
  outline: none;
34
  cursor: pointer;
 
56
  }
57
  /*********************************************************************/
58
 
59
+ .tab .dropbtn{
60
+ /* float:right; */
61
+ margin-left: auto; /* Pushes the button to the right */
62
+ background-color: inherit;
63
+ border: none;
64
+ outline: none;
65
+ cursor: pointer;
66
+ padding: 14px 16px;
67
+ transition: 0.3s;
68
+ }
69
+
70
  .container {
71
  /* display: inline-block; */
72
  cursor: pointer;
 
163
  position: absolute;
164
  right: 0;
165
  top: 0;
166
+ margin-top: 45px;
167
  background-color: #f9f9f9;
168
  min-width: 160px;
169
  max-width: 36%;
 
210
  margin-bottom: -10px;
211
 
212
  /* margin-left: -200px; */
213
+ }