-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduse.css
87 lines (79 loc) · 1.45 KB
/
produse.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
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 20rem;
background-color: azure;
border-radius: 20px;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
.card img {
width: 100%;
height: 10rem;
object-fit: cover;
border-radius: 20px;
}
.container b {
font-size: 25px;
}
.button {
text-align: center;
width: 180px;
margin: 1rem auto;
font-size: 20px;
}
.button a{
color: #fff;
text-decoration: none;
}
body {
height: 100%;
}
.grid-content {
display: grid;
grid-template-columns: 1.5fr 1.5fr 1fr;
align-items: center;
max-width: 100%;
margin: calc(50vh - 217px) 10rem;
}
#submit{
font-family: jost-bold, serif;
font-size: 13pt;
background-color: #4E5C90;
color: #fff;
border-color: #ffffff00;
border-radius: 8px;
min-width: 130px;
height: 40px;
font-family: jost-regular;
cursor: pointer;
transition: all .2s;
}
#submit:hover {
background-color: #1d2541;
background: #1d2541;
box-shadow: 0 0 10px black;
}
@media (max-width: 1300px) {
.grid-content {
display: block;
align-items: center;
max-width: 100%;
margin: 5rem 0;
}
.card {
margin: 2rem auto;
}
}
@font-face {
font-family: jost-regular;
src: url('./resources/fonts/Jost-Regular.ttf');
}
@font-face {
font-family: jost-bold;
src: url('./resources/fonts/Jost-Bold.ttf');
}