-
Notifications
You must be signed in to change notification settings - Fork 0
/
android-styles.css
86 lines (78 loc) · 1.21 KB
/
android-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
body {
background-color: #3ddb84;
max-width: 2000px;
margin: 0 auto;
}
h1,
h2 {
font-family: "Roboto";
font-size: 22px;
}
#logo {
width: 100px;
height: auto;
}
#blue-background-element {
height: 900px;
width: 400px;
border-radius: 200px 200px 200px 200px;
background-color: #4185f4;
}
#logo-background {
height: 400px;
width: 400px;
border-radius: 0 0 100% 100%;
background-color: #d7effe;
margin-top: -250px;
margin-left: -50px;
z-index: -999;
}
.rw-words h2 {
position: absolute;
opacity: 0;
overflow: hidden;
width: 100%;
color: black;
}
.rw-words-2 h2 {
animation: rotateWordsSecond 15s linear infinite 0s;
}
.rw-words h2:nth-child(2) {
animation-delay: 3s;
}
.rw-words h2:nth-child(3) {
animation-delay: 6s;
}
.rw-words h2:nth-child(4) {
animation-delay: 9s;
}
.rw-words h2:nth-child(5) {
animation-delay: 12s;
}
.rw-words h2:nth-child(6) {
animation-delay: 15s;
}
@keyframes rotateWordsSecond {
0% {
opacity: 1;
animation-timing-function: ease-in;
height: 0px;
}
10% {
opacity: 0.3;
height: 0px;
}
20% {
opacity: 1;
height: 100%;
}
27% {
opacity: 0;
height: 100%;
}
100% {
opacity: 0;
}
}
#you-want-it-text {
}