-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (46 loc) · 913 Bytes
/
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
body{
margin: 0;
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
font-family: 'Courier New', Courier, monospace;
background: linear-gradient(to left bottom , lightgreen , lightblue);
}
.container{
background-color: rgba(255, 255, 255, 0.2);
padding: 30px;
border-radius: 15px;
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
width: 80%;
margin: 10px;
text-align: center;
}
.heading{
font-weight: 700;
font-size: 30px;
}
.quote{
font-size: 30px;
font-weight: 600;
}
.author{
font-size: 25px;
margin: 10px;
font-style: italic;
}
.btn{
padding: 10px;
width:300px;
margin-top: 10px;
font-size: 18px;
background-color: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
border-radius: 10px;
text-transform: uppercase;
cursor: pointer;
}
.btn:hover{
background-color: rgba(255, 255, 255, 0.4);
color:green
}