-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (63 loc) · 1.32 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
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Poppins:wght@300;400&display=swap');
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container{
height:100vh;
background-color: rgb(4, 4, 22);
padding:0 5%;
display: flex;
align-items: center;
justify-content: center;
flex-direction:column;
border:3px solid #fff;
border-radius:1.5rem;
}
.quote{
text-align: center;
font-size: 2.5rem;
font-weight: bold;
color:rgb(219, 211, 211);
}
.fa-quote-left,
.fa-quote-right {
font-size: 35px;
color: #008fb3;
}
.author {
margin: 10px;
text-align: right;
font-size: 35px;
font-family: 'Dancing Script',cursive;
font-weight: 900;
color:#fff
}
.buttons{
margin-top: 1rem;
}
.next{
display: inline-block;
padding:.5rem 2.5rem;
border-radius:35px;
border:none;
background:#008fb3;
font-size: 18px;
font-weight: 600;
color:#fff;
letter-spacing: 2px;
transition: .3s;
cursor:pointer;
box-shadow: inset 8px 12px 10px rgba(98, 185, 235, 0.2);
}
.next:hover {
color: #000;
background-color: #fff;
box-shadow: inset 8px 12px 10px rgba(0, 0, 0, 0.2);
border: none;
}
.next:focus{
letter-spacing: 1px;
}