-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
108 lines (94 loc) · 1.93 KB
/
global.css
File metadata and controls
108 lines (94 loc) · 1.93 KB
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
*{
margin: 0;
padding: 0;
}
.system_header{
display: flex;
max-height: 48px;
width: 100%;
justify-content: end;
background-color: #0C5EFF;
background-repeat: round;
background-image: url("./assets/header_background.png");
padding: 5px;
.user_btn{
cursor: pointer;
border: 1px solid #FFF;
background-color: transparent;
border-radius: 15px;
}
.user_logo{
width: 40px;
display: flex;
}
}
.container{
padding: 20px 0;
display: flex;
flex-direction: column;
background-color: #D3F6F9;
justify-content: center;
.main-banner{
display: flex;
width: 100%;
}
.products{
display: flex;
flex-wrap: wrap;
gap: 2rem;
width: 100%;
justify-content: center;
max-width: 1200px;
margin: 0 auto;
.product_item{
width: 300px;
height: 300px;
background-color: #C0E0FD;
border: 1px solid #FFF;
border-radius: 30px;
}
}
}
.main-banner{
background-color: aliceblue;
display: flex;
flex: 3 1 1;
width: 100%;
justify-content: center;
.cat_logo{
height: 20rem;
border: 1px solid #FFF;
}
.systemTitle{
font-family: "Ingrid Darling", cursive;
font-weight: 400;
font-style: normal;
color: #009FF9;
font-size: 10rem;
}
}
.system_footer{
display: flex;
gap: 12px;
background-color: #0C5EFF;
padding: 20px;
justify-content: space-around;
span{
color: #fff;
font-size: 20px;
}
.footer_links{
text-decoration: none;
color: #fff;
font-size: 20px;
}
.footer_item{
list-style: none;
padding: 5px 0;
}
.system_about{
max-width: 500px;
color: #fff;
font-size: 20px;
}
}