-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
142 lines (137 loc) · 2.48 KB
/
main.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
.page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0px;
background-color: #60a3bc;
font-family: 'Nunito', sans-serif;
color:white;
}
.title{
margin:20px;
font-size: 64px;
}
@media all and (max-width: 400px){
.title{
font-size: 40px;
}
}
.subtitle{
margin:40px;
font-size: 20px;
}
@media all and (max-width: 400px){
.subtitle{
font-size: 20px;
}
}
.btn{
width: 120px;
height: 50px;
margin:30px;
color: white;
font-family: 'Nunito', sans-serif;
font-size: 30px;
font-weight: 800;
border-radius: 25%;
position: relative;
background-color: transparent;
border: none;
cursor: pointer;
/* display: flex;
flex-flow: row wrap;
justify-content: space-evenly; */
}
.btn:focus {
outline: none;
}
@keyframes wave {
0%{ top: -50%; }
100%{ top: 50%; }
}
span{
position:absolute;
}
span:nth-of-type(1){
left: 0;
animation: wave 1s ease-in-out infinite alternate 0.05s;
}
span:nth-of-type(2){
left: 18px;
animation: wave 1s ease-in-out infinite alternate 0.10s;
}
span:nth-of-type(3){
left: 43px;
animation: wave 1s ease-in-out infinite alternate 0.15s;
}
span:nth-of-type(4){
left:69px;
animation: wave 1s ease-in-out infinite alternate 0.20s;
}
span:nth-of-type(5){
left:92px;
animation: wave 1s ease-in-out infinite alternate 0.25s;
}
span:nth-of-type(6){
left:121px;
animation: wave 1s ease-in-out infinite alternate 0.30s;
}
.excuse{
display: flex;
flex-direction: row;
}
@media all and (max-width: 400px){
.excuse{
flex-direction: column;
}
}
.excuse_generator{
margin: 20px;
border: #D6A2E8 solid 4px;
border-radius: 10px;
padding:10px;
font-size: 25px;
}
@media all and (max-width: 400px){
.excuse_generator{
margin:10px;
font-size: 19px;
}
}
.excuse_button{
width: 30px;
height: 30px;
padding: 0px;
background: transparent;
border-radius: 50%;
border: gold solid 2px;
cursor: pointer;
}
@media all and (max-width: 400px){
.excuse_button{
width: 22px;
height: 22px;
}
}
.excuse_img{
width: 100%;
}
.excuse_msg{
display:none;
}
@media all and (max-width: 400px){
.excuse_msg{
display:inline;
}
}
.favorites{
display: flex;
flex-direction: column;
padding:0px;
font-size: 19px;
}
.hidden {
display: none;
}