-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqoute.css
More file actions
58 lines (57 loc) · 1.13 KB
/
qoute.css
File metadata and controls
58 lines (57 loc) · 1.13 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'lato', sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
background: url(library.jpg) no-repeat center center/ cover;
}
.container {
width: 550px;
height: 450px;
}
.heading {
font-size: 1.2rem;
border: solid #fff 2px;
border-radius: 5px;
width: 80%;
padding: 5px;
margin: 20px auto;
color: #fff;
background-color: #262626;
}
.content {
width: 100%;
height: 300px;
background-color: #fff;
border-radius: 15px;
padding: 50px 40px;
box-shadow: 0 0 10px;
}
.content .text-area {
font-size: 1.5rem;
line-height: 1.5;
}
.content .person {
font-size: 1.6rem;
color: red;
text-transform: uppercase;
margin-top: 20px;
}
.content .new-qoute {
font-size: 1.3rem;
background-color: #262626;
color: #fff;
padding: 10px 15px;
border-radius: 5px;
margin-top: 20px;
}
.content .new-qoute:active{
background-color: lightblue;
}