-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (71 loc) · 1.38 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background-color: #686de0;
font-family: 'Roboto', sans-serif;
height: 100vh;
padding: 20px;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
max-width: 100%;
width: 800px;
margin: 80px auto 0;
}
h3{
opacity: 0.5;
letter-spacing: 2px;
}
.joke {
font-size: 30px;
letter-spacing: 1px;
line-height: 40px;
margin: 30px auto;
max-width: 600px;
}
.btn {
background-color: #9f68e0;
border: 0;
border-radius: 10px;
color: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
padding: 15px 30px;
font-size: 16px;
cursor: pointer;
letter-spacing: 2px;
text-transform: capitalize;
}
.btn:active, .btn:hover {
transform: scale(0.95);
transition: all .5s ease-in-out;
}
.btn:focus {
outline: 0;
}
.footer {
text-align: center;
color: #fff;
padding: 2rem 0;
margin-top: 200px;
}
.footer__title {
font-size: 25px;
margin-bottom: 2rem;
}
.footer__social {
margin: 20px 0;
}
.footer__icon {
font-size: 1.5rem;
color: #fff;
margin: 0 1rem;
top: 80px;
}