-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
36 lines (33 loc) · 717 Bytes
/
Copy pathstyle.css
File metadata and controls
36 lines (33 loc) · 717 Bytes
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
.body{
margin: 0;
display:flex;
min-height: 100vh;
justify-content: center;
align-items: center;
background:linear-gradient(rgb(104, 104, 224),rgb(218, 231, 103),rgb(81, 153, 221));
}
.container{
display: block;
width: 75%;
text-align: center;
background:linear-gradient(to right bottom, rgb(141, 141, 161),rgb(235, 255, 53),rgb(221, 81, 81));
padding: 20px;
}
.title{
cursor:context-menu;
}
.display_joke{
margin: 3rem;
}
.generate_btn{
height: 6vh;
width: 20vh;
color: blue;
border-color: rgb(226, 233, 240);
cursor: pointer;
border-radius: 6px;
}
.generate_btn:hover{
color: blue;
box-shadow: 2px 1px 10px rgb(29, 28, 28);
}