-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (112 loc) · 1.9 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
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
.wrapper {
display: flex;
justify-content: center;
}
.container {
display: grid;
grid-template-rows: 20vh 25vh 1fr 35vh;
grid-template-columns: 20vw 1fr;
grid-template-areas:
"logo nav"
"script script"
"main main"
"foot foot";
gap: 2px;
width: 90vw;
}
#logo {
grid-area: logo;
border-radius: 50%;
}
#head {
grid-area: nav;
border-radius: 20px;
box-shadow: 5px 5px 5px blue;
font-size: large;
font-weight: 900;
font-style: italic;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
#head ul li a:hover
{
background-color: pink;
}
#head a {
color: rgb(230, 108, 108);
}
#head ul {
height: 80%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
#head ul li {
list-style: none;
}
#script {
grid-area: script;
font-size: 5rem;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 550px) {
#script {
font-size: 2rem;
}
}
.role {
color: rgb(233, 83, 83);
}
#carts {
grid-area: main;
border-radius: 50px;
margin-bottom: 3%;
}
#carts p {
text-align: center;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-size: 3rem;
font-style: italic;
text-decoration: underline;
font-weight: 900;
text-shadow: 5px 5px 5px pink;
}
.cart {
margin: 1.5%;
border-radius: 15px;
box-shadow: 5px 5px 5px grey;
}
.cart img {
width: 150px;
height: 170px;
}
.cart figcaption {
text-align: center;
padding-bottom: 2%;
color: blue;
font-weight: 900;
font-style: italic;
}
.cards {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
#footer {
grid-area: foot;
text-align: center;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
font-weight: 800;
box-shadow: -3px -3px 5px pink;
border-radius: 50px;
}
.links {
margin-bottom: 2%;
}