forked from arghadipmanna101/Flipkart_Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.css
123 lines (108 loc) · 2.14 KB
/
profile.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
body {
background-color: #f4f4f4;
padding-left: 570px;
margin-top: 150px;
}
#navbar-container {
position: fixed;
top: 0;right: 0;
width: 100%;
height: 10vh;
z-index: 600;
}
#input_data {
width: 400px;
/* Adjust the width as needed */
}
.nav-item {
transition: background-color 0.5s ease;
}
.nav-link {
text-decoration: none;
color: #000;
display: block;
padding: 20px;
}
.navtab{
margin-left: 10px;
padding-left: 10px;
background-color: #e6eeff;
border-radius: 10px;
}
.navbar-nav{
margin-right: auto;
}
#input_data{
width: 500px;
border: none;
background-color: transparent;
padding: 5px;
}
.nav-item:hover{
background-color: transparent;
transform: none;
border-bottom: none;
}
.nav-item::before:hover{
border: #fff;
transform: none;
background-color: transparent;
}
.nav-item-divider::before {
content: '';
display: inline-block;
width: 1px;
height: 30px;
background-color: #ccc;
margin: 0 10px;
transition: all 0.4s;
}
.nav-item-divider:last-child::before {
display: none;
}
.nav-item:hover .nav-item-divider::before {
background-color: #000;
}
.nav-item-divider::after {
content: '';
display: inline-block;
width: 1px;
height: 30px;
background-color: #ccc;
margin: 10px 10px;
}
.nav-item-divider:last-child::after {
display: none;
}
.container {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 30px;
box-shadow: 0 4px 8px rgba(91, 77, 77, 0.1);
max-width: 780px; /* Reduced size of card */
}
h1 {
color: #1149ff;
}
.form-group label {
color: #343a40;
}
.form-control {
border: 1px solid #ced4da;
}
.form-control:focus {
border-color: #0755ff;
box-shadow: 0 0 0 0.2rem rgba(12, 82, 163, 0.25);
}
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
.btn-primary:focus {
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}