-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquote.css
More file actions
40 lines (40 loc) · 800 Bytes
/
quote.css
File metadata and controls
40 lines (40 loc) · 800 Bytes
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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
background:url("Goggins\(1\).jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: "Kanit", serif;
font-weight: 400;
font-style: normal;
}
.container{
position:absolute;
transform: translate(-50%,-50%);
top:50%;
left:40%;
border:3px solid rgb(78, 71, 71);
border-radius:10px;
background-color:rgb(76, 71, 68);
}
.content{
padding:30px;
text-align: center;
color:rgb(177, 173, 193);
}
#author{
margin-top:10px;
}
#getbtn{
padding: 10px;
margin-top: 15px;
border-radius:7px;
border:none;
outline:none;
font-size:20px;
cursor:pointer;
background-color:rgb(112, 112, 172);
}