-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (65 loc) · 1.28 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
#container {
display:flex;
flex-direction: column;
}
* {
margin: O;
padding: 0;
}
body {
min-height: 100vh;
background-image: linear-gradient(to right, #4facfe 0%, #00f2f3 100%);
font-family: roboto, sans serif;
}
.container {
background: #fff;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
min-height: 40px;
margin: auto;
width: 50%;
margin-top: 3em;
box-shadow: 2px 2px 2px #888888;
}
.title {
font-size: 55px;
font-weight: 700;
color: #a9a9a9;
text-align: center;
margin-bottom: 10%;
}
.quoteBtn {
color: #fff;
background: #00f2f3;
outline: none;
display: inline-block;
text-align: center;
justify-content: center;
max-width: 50%;
margin-top: auto;
padding: 15px;
font-size: 20px;
font-weight: 600;
border-radius: 25px;
border: transparent;
cursor: pointer;
}
.quoteDiv {
background: #e9e9e9 ;
margin: 20px 0;
padding: 35px;
border-radius: 5px;
}
.quoteTxt {
text-align: center;
font-size: 25px;
font-style: italic;
color: #5c5c5c;
}
.authorTxt {
text-align: center;
font-size: 25px;
color: #d57eeb;
}