-
Notifications
You must be signed in to change notification settings - Fork 0
/
kart.css
147 lines (124 loc) · 2.4 KB
/
kart.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
body{
background-color: #fff;
background-size: cover;
background-repeat: no-repeat;
}
#box{
width: 300px;
height: 300px;
background-color: aquamarine;
}
img{
width: 150px;
height: auto;
}
.navbar-toggler{
color: white;
border: 2px solid crimson;
}
#items ul li{
padding: 20px;
justify-content: center;
text-align-last: center;
border-radius: 30px;
}
#items ul li form input{
border-radius: 0%;
justify-content: center;
text-align-last: center;
background-color: transparent;
}
#items ul li form button{
width: 80px;
border-radius: 20px;
height: 39px;
justify-content: center;
text-align-last: center;
background-color: transparent;
}
#items ul li .cool-link:hover{
background-color: crimson;
border-radius: 10px;
transition: 0.3s ease-in-out;
}
/*.dropdown-menu{
width: 100%;
height: auto;
background-color:rgba(0,0,0,0.8);
text-align: center;
border-radius: 30px;
overflow: hidden;
}
.dropdown-menu li a{
color: white;
text-decoration: none;
}
.dropdown-menu li{
list-style: none;
border-radius: 0px;
}
.dropdown-menu li:hover{
background-color:crimson;
opacity: 1;
transition: 0.3s ease-in-out;
}*/
.flex-container{
display: flex;
flex-wrap: wrap;
}
.flex-container li a{
color: white;
text-decoration: none;
}
.flex-container li{
list-style: none;
border-radius: 0%;
}
.flex-container li:hover{
background-color:crimson;
opacity: 1;
transition: 0.3s ease-in-out;
}
.dropleft ul {
padding:10px 50px;
background-color:firebrick;
}
.dropleft ul li{
color: white;
}
.dropleft ul li:hover{
background-color: transparent;
border-bottom:2px solid yellow;
transition: 0.2s ease-in-out;
color: white;
border-radius: 0%;
}
.dropleft ul li img{
border-radius: 50%;
list-style: none;
width: 70px;
height: auto;
}
.card{
box-shadow: 0px 14px 14px -9px black;
}
footer{
width: 100%;
height: auto;
background-color:black;
}
#footer{
display: flex;
padding: 30px;
}
footer li{
list-style: none;
}
hr{
height: 0.5px;
background-color: aliceblue;
}
#myname{
margin-left:40%;
color: white;
}