-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.css
104 lines (86 loc) · 1.65 KB
/
quotes.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
height: 100vh;
background-image: url(https://images.unsplash.com/photo-1513475889489-6842a6634df5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.container {
height: 500px;
width: 600px;
overflow: hidden;
padding: 100px 30px;
flex-wrap:wrap;
}
.content {
display: flex;
flex-direction: column;
}
h1 {
text-align: center;
margin-bottom: 50px;
}
.quote-area i{
font-size: 16px;
}
.to-right {
display: flex;
justify-content: end;
}
.button {
display: flex;
justify-content: center;
margin-top: 50px;
}
.btn {
background-color: transparent;
border: 1px solid black;
padding: 5px 15px;
margin-top: 15px;
font-size: 16px;
}
.line {
font-size: 30px;
font-weight: 300;
}
@media all and (max-width: 855px) {
.container {
padding: 40px 60px;
}
h1 {
margin-bottom: 15px;
font-size: 24px;
}
.par {
font-size: 14px;
}
.button {
margin-top: 20px;
}
}
@media all and (max-width: 500px) {
.container {
padding: 40px 30px;
}
h1 {
margin-bottom: 15px;
font-size: 24px;
}
.quote-area i{
font-size: 14px;
}
.par {
font-size: 14px;
}
.button {
margin-top: 30px;
}
}