-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
102 lines (85 loc) · 1.58 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
.font-shadows {
font-family: 'Shadows Into Light', cursive;
}
.font-coming {
font-family: 'Coming Soon', cursive;
}
.font-bad {
font-family: 'Bad Script', cursive;
}
.font-patrick {
font-family: 'Patrick Hand', cursive;
}
.font-handlee {
font-family: 'Handlee', cursive;
}
.font-neucha {
font-family: 'Neucha', cursive;
}
.font-school {
font-family: 'Schoolbell', cursive;
}
.full-height {
height: 100vh;
}
body {
background-image: url("images/blue_A_lonely_forest_way.jpg");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
}
.container {
background-image: url("images/blue_forest.jpg");
background-repeat: no-repeat;
background-size: cover;
justify-content: center;
box-sizing: border-box;
opacity: 0.5;
height: 100%;
padding: 20px;
color:#fff;
}
.pregunta, #resultado {
color: #fff;
top: 200px;
margin-bottom: 30px;
position: relative;
cursor: pointer;
}
.pregunta {
font-size: 75px;
margin-left: 150px;
}
#resultado {
font-size: 200px;
margin: 0 auto;
flex: 0 0 50%;
padding: 20px;
text-align: center;
}
.fading {
-webkit-animation: fading 5s ease-out;
-moz-animation: fading 5s ease-out;
-o-animation: fading 5s ease-out;
animation: fading 5s ease-out;
animation-iteration-count: infinite;
}
@-webkit-keyframes fading {
0% {
display: none;
opacity: 0.4;
}
1% {
display: block;
opacity: 0.4;
}
50% {
display: block;
opacity: 0.7;
}
100% {
display: block;
opacity: 0.4;
}
}