-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJokes.css
More file actions
97 lines (92 loc) · 1.96 KB
/
Copy pathJokes.css
File metadata and controls
97 lines (92 loc) · 1.96 KB
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
*{
margin: 0;
padding: 0;
}
html,body{
width: 100%;
height: 100%;
display: flex;
justify-content: space-between;
background-color: yellow;
}
.containers{
height: 80vh;
width: 180vh;
margin-top: 10vh;
margin-left: 20vh;
}
#joke-container{
background-color: greenyellow;
border-radius: 25px;
}
#text-container{
background-color: yellow;
margin-right: 20vh;
display: block;
justify-content: center;
animation-name: moveup;
animation-duration: 2s;
}
@keyframes moveup {
from{transform: translateY(50%);}
}
.joke-heading{
font-size: 40px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
display: flex;
justify-content: center;
}
#lol-emoji{
height: 200px;
width: 200px;
background-color: yellow;
}
.lol-textdiv{
margin-top: 25%;
margin-left: 25%;
}
#texts{
width: 500px;
height: 175px;
margin-top: 20px;
margin-left: 10px;
background-color: yellow;
}
#theory{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
animation-name: moveright;
animation-duration: 2s infinite;
animation-delay: 1s;
margin-left: 30px;
}
@keyframes moveright {
from{transform: translateX(-50px);}
}
#joke{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 20px;
margin-left: 30px;
}
#lol-img{
margin-left: 25%;
}
#generate-btn{
margin-top: 25px;
margin-left: 35%;
padding: 15px;
border-radius: 25px;
background-color: rgb(144, 212, 43);
font: 300;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 800;
border: solid;
cursor: pointer;
transition: transform 0.1s ease;
}
#keep-smile-div{
margin-left: 28%;
margin-top: 20%;
}
#keep-smile-text{
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}