-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (56 loc) · 972 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: monospace;
border: none;
outline: none;
}
body {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: #577bac;
}
.container {
width: 42rem;
background: #fdfdfd;
border-radius: 1rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
gap: 2rem;
padding: 2rem;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.title {
font-size: 1.5rem;
text-transform: capitalize;
color: #676767;
}
.btn {
width: 16rem;
height: 4rem;
font-size: 1.5rem;
padding-inline: 1rem;
font-weight: 500;
color: #fdfdfd;
background: #577bac;
border-radius: 1rem;
cursor: pointer;
transition: all 0.6s;
}
.btn:hover {
background: #fdfdfd;
color: #577bac;
border: 2px solid #577bac;
}
.joke {
font-size: 2.5rem;
text-align: center;
line-height: 1.5;
color: #1b1a1a;
}