-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
137 lines (136 loc) · 2.27 KB
/
style.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
*{
padding: 0;
margin:0;
color: white ;
font-family:sans-serif ;
}
body{
background-color: #001;
display: flex;
}
/* .profile{
display: none;
} */
.img-box{
width: 50px;
height: 50px;
border-radius: 50%;
overflow: hidden;
border: 3px solid white;
flex-shrink: 0;/* because shrinkage */
}
.img-box img{
width: 100%;
}
.profile{
display: flex;
align-items: center ;
gap: 30px;
}
.profile h2{
font-size: 20px;
text-transform: capitalize;
}
.menu{
background-color:#123 ;
width:60px;
height: 100vh;
padding: 20px;
overflow: hidden;
}
.menu:hover{
width: 260px;
}
ul{
list-style:none ;
position: relative;
height: 95%;
}
ul li a{
display: block;
text-decoration:none;
padding: 10px;
margin: 20px 0px;
border-radius: 8px;
display: flex ;
align-items :center;
gap: 40px;
transition: .5s;
}
ul li a:hover, .active, .data-info .box:hover ,td:hover{
background-color: #ffffff55;
}
.log-out{
position:absolute;
bottom: 0px;
width:100%;
}
.log-out a {
background-color: #a00;
}
ul li a i{
font-size: 30px;
}
.content{
width: 100%;
margin: 10px;
}
.title-info{
background-color: rgb(10, 76, 231);
padding: 10px;
margin: 10px 0;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: space-between;
border-radius: 8px;
}
.data-info{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
}
.data-info .box {
background-color:#123;
height: 150px;
flex-basis: 150px;/* is the same role of with but their we used because we have display :flex*/
flex-grow: 1; /*if we have a empty space, the box will grow in */
border-radius: 8px;
display: flex;
align-items: center;
justify-content: space-around;
}
.data-info .box i{
font-size: 40px;
}
.data-info .box .data{
text-align: center;
}
.data-info .box .data span{
font-size: 30px;
}
table{
width: 100%;
text-align: center;
border-spacing: 8px;
}
td,th {
background:#123;
height: 40px;
border-radius: 8px;
}
th{
background-color: #0080ff ;
}
.price .count{
padding: 6px;
border-radius: 6px;
}
.price{
background-color: green;
}
.count{
background-color: gold;
}