-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (68 loc) · 1.49 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body {
background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
}
.container {
width: 1280px;
margin: auto;
font-family: 'Poppins', sans-serif;
}
.quotes-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
.inner-quotes-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 900px;
text-align: center;
min-height: 400px;
padding: 0px 25px;
color: #000;
border-radius: 10px;
background-color: white;
border: 10px solid #0f0c29;
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.9);
}
.inner-quotes-container p {
font-size: 1.5rem;
color: black;
}
.inner-quotes-container h3 {
font-size: 2rem;
color: black;
}
button {
background: #0f0c29;
color: white;
border: 1px solid #302b63;
padding: 10px;
outline: none;
}
.quote-btn {
padding-top: 25px;
}
@media(max-width:1280px) {
.container {
width: 95%;
}
}
@media(max-width:900px) {
.inner-quotes-container {
width: 100%;
}
}
@media(max-width:480px) {
.inner-quotes-container p {
font-size: 1.2rem;
}
.inner-quotes-container h3 {
font-size: 1.5rem;
}
}