-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
55 lines (51 loc) · 856 Bytes
/
estilo.css
File metadata and controls
55 lines (51 loc) · 856 Bytes
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
#h1 {
padding: 0;
margin: 0;
color: whitesmoke;
font-size: 60px;
}
body {
font-family: "Poppins", sans-serif;
background-image: linear-gradient(MediumOrchid , Plum);
}
.row {
display:block;
align-items:flex-start;
justify-content: center;
}
h1{
color: whitesmoke;
font-size: 30px;
}
h2 {
color: whitesmoke;
font-size: 20px;
}
h3 {
color: whitesmoke;
}
.card {
border-radius: 10px;
box-shadow: 7px 7px 13px 0 rgba(98, 0, 255, 0.534);
padding: 40px;
margin: 30px;
width: 300px;
transition: all 0.3s ease-out;
float: left;
}
.card:hover {
transform: translateY(-5px);
cursor: pointer;
}
.button {
background-color: wwhitesmoke;
border-radius: 30px;
font-size: 20px;
}
a {
text-decoration: none;
color: blue
}
li {
color: whitesmoke;
}