-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavbarstyle.css
59 lines (56 loc) · 1.75 KB
/
Navbarstyle.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
overflow-x: hidden; /* Hide horizontal scrollbar */
overflow-y: hidden; /* Show vertical scrollbar if needed */
}
.bod{
background-color: rgb(255, 252, 247);
overflow-x: auto; /* Hide horizontal scrollbar */
overflow-y: auto; /* Show vertical scrollbar if needed */
}
.text{
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
padding-left: 3px;
padding-right: 3px;
color: rgb(255, 252, 247);
font-size: 40px;
margin-right: 0;
margin-left: 40px;
font-weight: 500;
border: none;
background-color: black;
vertical-align: middle;
margin-top: 5px;
margin-bottom: 10px;
}
.navbar{
display: block;
height: 65px;
top: 0;
left:0;
right: 0;
margin:0;
padding:0;
background-color: black;
margin-bottom: 0px;
}
.buy, .sell, .logout, .prof{
font-family: Montserrat, Georgia, 'Times New Roman', Times, serif;
height: 63px;
width: 80px;
color: rgb(118, 194, 229);
font-size: 19px;
margin-right: 0px;
font-weight: 400;
border: none;
background-color: black;
vertical-align: middle;
margin-top: 0px;
}
.buy:hover, .logout:hover, .sell:hover, .prof:hover{
border-bottom: 3px solid rgb(118, 194, 229);
cursor: pointer;
font-weight: 500;
}