-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (79 loc) · 1.4 KB
/
styles.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.hide {
display: none;
}
#pantallaInicial{
display: block;
}
#pantalla1{
display: none;
}
#pantalla2{
display: none;
}
#pantalla3{
display: none;
}
#pantalla4{
display: none;
}
#pantallaResultados{
display: none;
}
body {
margin: 5% 30%;
padding: 0;
text-align: center;
font-family: 'Indie Flower', cursive;
color: #3f3434;
background-image: url(img/DC-Comics-Wallpapers.jpg);
background-repeat: no-repeat;
background-size: cover;
}
.conten {
border: 2px solid #3B0300;
box-shadow: 13px 17px 20px -5px rgba(0,0,0,0.73);
border-radius: 5%;
padding: 10% 0;
}
h1 {
font-size: 2.5em;
color: #3B0300;
}
p {
font-size: 23px;
font-weight: bold;
}
.imagen {
height: 270px;
}
.input{
background-color: rgba(109, 12, 2, 0.8);
border-radius: 15px;
border-left: 0px;
border-top: 0px;
border-right: 0px;
border-bottom: 2px solid #FFF;
color: #fff;
font-size: 17px;
padding: 0px 20px;
outline: none;
height: 50px;
}
.button{
background-color: rgba(255, 255, 255, 0.5);
border: 2px solid #3B0300;
border-radius: 25px;
color: #3B0300;
cursor: pointer;
font-size: 16px;
font-weight: bold;
height: 40px;
width: 200px;
letter-spacing: 1px;
margin: 10px 0px;
outline: none;
}
.button:hover {
background-color: #3B0300;
color: #FFF;
}