-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (55 loc) · 1.08 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
justify-content:center ;
align-items:center ;
height: 100vh;
text-align: center;
background-color: antiquewhite;
}
.body-container{
width: 40%;
height: 30%;
}
.heading {
margin: 20px auto;
background-color: black;
color: white;
padding: 5px;
border: 2px solid white;
border-radius: 5px;
}
.quote-container {
background-color: white;
width: 100%;
height: 300px;
border-radius: 15px;
padding: 50px;
box-shadow:0 0 10px;
}
.quote-container .text-area{
font-size: 1.5rem;
line-height: 1.5;
}
.quote-container .person{
font-size: 1.6rem;
color: red;
text-transform: uppercase;
margin-top: 20px;
}
.button-area button{
margin-top: 20px;
font-size: 1.2rem;
background-color: black;
color: white;
padding: 10px 15px ;
border-radius: 5px;
cursor: pointer;
}
.button-area button:active{
background-color: white;
}