forked from HackYourFuture/JavaScript2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (62 loc) · 958 Bytes
/
index.css
File metadata and controls
65 lines (62 loc) · 958 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color:orange;
font-family: 'Poppins', sans-serif;
color: black;
}
.container {
width: 50%;
margin: 100px auto 0;
background-color: white;
padding: 40px 50px;
}
p{
line-height: 1.5;
color :#04356A;
}
.fas {
font-size: 2em;
margin-right: 10px;
}
#quote {
font-size: 1.7em;
}
#author {
float: right;
font-size: 1em;
margin-top: 15px;
}
.social{
clear: both;
display: flex;
justify-content: space-between;
margin-top: 60px;
font-size: 1.5em;
}
button{
padding: 10px 12px;
background-color: orange;
color: white;
outline: none;
border-radius: 3px;
font-size: 0.5em;
cursor: pointer;
min-width: 50px;
}
#next {
font-family: 'Poppins' , sans-serif;
font-size: 0.5em;
color: white;
border-radius: 3px;
cursor: pointer;
min-width: 50px;
}
button :hover{
opacity: 0.5;
transition: 0.1s ease-in-out;
color:black;
}