-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (102 loc) · 1.98 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (102 loc) · 1.98 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
body {
background: rgb(85, 144, 189);
background: linear-gradient(90deg, rgb(195, 77, 111) 0%, rgb(148, 35, 101) 54%, rgb(189, 18, 18) 82%);
text-align: center;
font-family: sans-serif;
}
h1 {
color: white;
font-size: 60px;
font-family: "Barlow", sans-serif;
display: inline-block;
}
img {
display: inline-block;
width: 50%;
border-radius: 20%;
box-shadow: 0 6px 60px rgb(23, 23, 255);
background-color: rgba(255, 255, 255, 0.292);
}
.container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 30px;
width: 80%;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
margin-top: 20px;
}
.name {
text-transform: capitalize;
font-weight: bold;
font-size: 1.2rem;
}
.card p {
color: azure;
margin: 5px;
}
.buttons {
position: relative;
justify-content: space-around;
margin: 20%;
margin-bottom: 50px;
margin-top: 30px;
}
.buttonAll {
background-color: #d2ba22;
padding: 20px;
border-radius: 20%;
font-size: 20px;
font-weight: bold;
color: rgb(24, 20, 16);
cursor: pointer;
}
button {
background-color: #b725b7;
padding: 20px;
border-radius: 20%;
font-size: 20px;
font-weight: bold;
color: antiquewhite;
cursor: pointer;
}
button:hover {
box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.buscador {
display: block;
background-color: #b725b7;
padding: 20px;
border-radius: 20%;
font-size: 20px;
color: rgb(223, 220, 189);
cursor: pointer;
transition: width 3s ease-in-out;
width: 1.8%;
}
.buscador:focus {
width: 30%;
}
.cutreball {
display: flex;
justify-content: center;
align-items: center;
}
.box {
width: 450px;
height: 300px;
}
.box img {
width: 100%;
height: auto;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
.box img {
height: 50%;
-o-object-fit: scale-down;
object-fit: scale-down;
-o-object-position: center center;
object-position: center center;
}
}/*# sourceMappingURL=styles.css.map */