-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo2.css
More file actions
144 lines (127 loc) · 2.48 KB
/
estilo2.css
File metadata and controls
144 lines (127 loc) · 2.48 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
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
list-style: none;
text-decoration: none;
scroll-behavior: smooth;
}
:root{
--bg-color: #ffffff; /*cor do fundo*/
--text-color: #111111; /*cor das letras*/
--main-color: #5fc8b3;/*cor dos botão*/
--big-font: 4.5rem; /*tamanho do nome look*/
--h2-font: 3.3rem;
--h3-font: 2rem;
--normal-font: 1rem;
}
body{
background: var(--bg-color);
color: var(--text-color);
}
header{
margin: 0;
width: 100%;
top: 0;
right: 0;
z-index: 1000;
position: fixed;
display: flex;
align-items: center;
justify-content: space-between;
background: #ffffff;
padding: 2px 14%;
transition: all .35s ease;
background-image: linear-gradient(90deg, #72fc72 0%, #E2D45C 50.52%, #7ca2e7 100%);
}
.logo{
font-size: 28px;
font-weight: 700;
letter-spacing: 1px;
color: var(--text-color);
}
.navlist{
display: flex;
}
.navlist a{
color: var(--text-color);
font-weight: 600;
padding: 10px 25px;
font-size: var(--normal-font);
transition: all .36s ease;
}
.navlist a:hover{
color: var(--main-color);
}
.header-icons img{
font-size: 32px;
color: var(--text-color);
margin-right: 20px;
transition: all .36s ease;
}
.header-icons i:hover{
color: var(--main-color);
}
/*catalogo*/
#produtos {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.produto:hover{
transform: scale(1.1);
cursor: pointer;
position: relative;
transition: all .35s ease;
}
.catalog{
width:100vw ;
padding: 40px; /*tirar la de cima*/
margin-left:150px;
}
h6{
color: black;
font-size: 50px;
padding: 100px;
margin-left: 550px;
border-radius: 30px;
}
section .produtos{
border: groove;
border-radius: 10px;
max-width: 1500px;
height: 40%;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
grid-gap: 40px;
padding: 50px;
background-color: white;
}
section .produto{
border: groove;
height: 400px; /*separa d camisa a letra*/
background: var(--gray);
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding-bottom: 20px;
background-color: hsl(0, 0%, 100%);
}
section .prod {
height: 8%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.prod h3 {
font-size: 15px;
}
.prod p {
margin-top: 10px;
color:rgb(12, 2, 121);
font-weight: 700;
}