-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
97 lines (87 loc) · 1.7 KB
/
style.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
* {
margin: 0;
padding: 0;
}
@font-face {
font-family: Lobster;
src: url(./Lobster/Lobster-Regular.ttf);
}
.container {
box-sizing: border-box;
height: 100vh;
width: 100vw;
/* background-color: rgba(135, 91, 238, 0.445); */
background: rgba(144, 19, 254, 0.65);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3.5px);
-webkit-backdrop-filter: blur(3.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
display: flex;
justify-content: center;
align-items: center;
}
.hero {
height: 70%;
width: auto;
max-width: 800px;
padding: 10px;
color: white;
/* border: 2px solid blue; */
/* background-color: rgba(135, 91, 238, 0.445); */
background: rgba(0, 0, 0, 0.75);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3.5px);
-webkit-backdrop-filter: blur(3.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
opacity: 1;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.mainHead {
text-align: center;
padding: 5px;
font-size: 70px;
font-family: Lobster;
}
#joke {
min-height: 100px;
width: auto;
font-size: 25px;
text-align: center;
position: relative;
top: 10%;
font-family: Lobster;
}
#btn {
height: 30px;
width: 100px;
position: relative;
top: 20%;
font-family: Lobster;
border: 2px solid black;
border-radius: 2px;
background-color: rgba(255, 255, 0, 0.808);
}
#btn:hover {
background-color: rgb(255, 255, 0);
}
#emo {
height: 250px;
width: 250px;
z-index: -1;
opacity: 0.4;
}
.emoji1 {
position: absolute;
top: 0%;
left: 0%;
}
.emoji2 {
position: absolute;
bottom: 0%;
right: 0%;
}