-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
65 lines (57 loc) · 1.19 KB
/
estilo.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
text-align: center;
background-color: rgba(107, 99, 99, 0.442);
}
h1 {
padding: 60px;
color: black;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.container {
background-color: rgba(107, 99, 99, 0.442);
max-width: 700px;
margin: auto;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
border-color: chartreuse;
border: 5px solid;
border-radius: 15px;
display: flex;
padding: 5px 0;
}
.izquierdo {
width: 70%;
font-size: 80px;
display: flex;
flex-direction: column;
justify-content: center;
}
.derecha {
width: 30%;
}
.msj {
font-size: 60px;
height: 80px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.opcion {
width: 80px;
height: 80px;
border: 1px solid rgba(248, 239, 239, 0);
font-size: 50px;
margin-bottom: 20px;
border-radius: 50%;
cursor: pointer;
background-color: black;
color: blanchedalmond;
display: flex;
justify-content: center;
align-items: center;
}
.opcion:hover {
background-color: cadetblue;
}