-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboardUser.css
231 lines (193 loc) · 3.25 KB
/
dashboardUser.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* Nav Start */
body{
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: white;
}
a{
text-decoration: none;
}
ul{
list-style: none;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
left: 0;
top: 0;
width: 100%;
z-index: 1;
}
nav ul{
display: flex;
width: 90%;
}
nav ul li a{
height: 40px;
line-height: 43px;
margin: 3px;
padding: 0 22px;
display: flex;
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 1px;
border-radius: 3px;
transition: 0.6s ease-in-out;
color: black;
}
nav ul li a:hover{
background-color: #35bcbf;
color: #263849;
box-shadow: 5px 10px 30px #258586;
}
.active{
background-color: #35bcbf;
color: #263849;
box-shadow: 5px 10px 30px #258586;
}
nav img{
height: 40px;
margin: 0px 20px;
}
.c1 {
color: #90f6d7;
}
.c2 {
color: #35bcbf;
}
.c3 {
color: #41506b;
}
.c4 {
color: #263849;
}
/* Nav end */
.main{
width: 100%;
height: 1000px;
position: relative;
background-repeat: no-repeat;
background-size: cover;
background-image: url(assets/Sprinkle.svg);
}
.basicdetails{
display: flex;
justify-content: center;
margin-top: 40px !important;
}
.basicdetails input{
padding: 10px;
border-radius: 30px;
border-style: solid;
margin: 0px 5px;
}
.basicdetails label{
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5rem;
padding: 0px 0px 0px 60px;
}
.basicdetails p{
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5rem;
}
.card{
padding: 40px;
border-radius: 20px;
backdrop-filter: blur(5px);
box-shadow: 5px 10px 30px #35bdbf88;
margin: 0px 30px;
}
.detailstable{
margin-top: 40px;
}
/*
table{
width: 100%;
}
table, th, td{
border: 4px solid black;
border-radius: 20px;
border-collapse: collapse;
}
td{
text-align: center;
}
*/
table {
border-collapse:separate;
border:solid #263849 1px;
border-radius:6px;
width: 100%;
font-size: 21px;
}
td{
text-align: center;
}
td, th {
border-left:solid #263849 1px;
border-top:solid #263849 1px;
padding: 10px;
}
th {
border-top: none;
}
td:first-child, th:first-child {
border-left: none;
}
.adddetails{
margin-top: 50px;
}
.adddetails form{
display: flex;
justify-content: center;
}
.adddetails input{
padding: 10px;
width: 15%;
border-radius: 30px;
border-style: solid;
margin: 0px 5px;
}
.adddetails label{
display: flex;
justify-content: center;
align-items: center;
margin: 0px 0px 0px 5px;
}
button{
padding: 10px;
width: 100px;
margin-left: 10px;
border-radius: 30px;
border-style: solid;
transition: 0.3s ease-in-out;
box-sizing: content-box;
background-color: transparent;
}
button:hover{
color: white;
background-color: #35bcbf;
}
input{
outline: none;
transition: 0.5s ease-in-out;
}
input:focus{
border: #35bcbf 2px solid;
}
.abc{
outline: none;
transition: 0.5s ease-in-out;
}
.connectionstatus{
padding: 20px;
width: fit-content;
color: green;
}