forked from GauravPimplekar/UNIT2-PROJECT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar1.css
130 lines (95 loc) · 1.59 KB
/
navbar1.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
#navbar>div:nth-child(1){
background-color: darkcyan;
text-align: center;
font-size: 17px;
color: white;
padding: 5px;
}
#navbar>div:nth-child(1)>p>a{
color: white;
}
#head>div{
width: auto;
height: 90px;
border: 1px gray solid;
display: flex;
align-items: center;
justify-content: space-evenly;
}
#head>div>div>img{
height: 80px;
}
input{
width: 700px;
height: 45px;
border:0.5px gray solid;
/* border-left:none ; */
}
#head>div>div:nth-child(2)>button{
width: 50px;
height: 45px;
border:0.5px gray solid;
/* border-right: none; */
background-color: white;
cursor: pointer;
}
select{
background-color: white;
border: none;
width: 55px;
margin-right: 20px;
}
select>option{
background-color:white;
color: gray;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#head2{
display: flex;
/* border: 1px red solid; */
justify-content: space-evenly;
align-items: center;
font-size: 18px;
height: 30px;
}
#head2>div:nth-child(1){
color: red;
}
#head2>div:nth-child(11){
color:cornflowerblue;
}
#buttom{
/* border: 1px green solid; */
width: auto;
height: 40px;
}
#buttom>div>h1{
text-align:center;
}
#buttom>div>button{
display: flex;
margin: auto;
height: 30px;
width: 250px;
justify-content: center;
align-items: center;
color: darkcyan;
border:0.5px darkcyan solid;
background-color: white;
}
#buttom>div>button:hover{
background-color: darkcyan;
color: white;
}
#buttom>div:nth-child(2){
background-color: hsl(54,35%,94%);
width: auto;
height: 100px;
}
#buttom>div:nth-child(2)>div>p{
line-height: 5px;
}
#user>a>img{
width: 60px;
height: 50px;
}