-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (79 loc) · 1.43 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
html {
background-color: #F7F7F7;
text-align: center;
font-family: 'Cutive Mono', monospace;
margin-top: 30px;
}
h1 {
margin-bottom: 50px;
}
b {
font-size: 50px;
color: #FF5165;
}
img {
display: block;
margin: 0 auto;
width: 700px;
}
hr {
margin-top: 50px;
margin-bottom: 50px;
width: 550px;
}
#new-quote {
font-family: 'Cutive Mono', monospace;
font-size: 26px;
font-weight: 700;
background-color: #FF5165;
color: #F7F7F7;
width: 120px;
height: 45px;
line-height: 45px;
border-radius: 25px;
display: block;
margin: 0 auto;
border: 1px solid #F7F7F7;
transition: 0.5s;
cursor: pointer;
margin-bottom: 40px;
margin-top: 30px;
}
#new-quote:hover {
background-color: #F7F7F7;
color: #FF5165;
border: 1px solid #FF5165;
}
#new-quote:focus {
outline: 0;
}
#quote {
font-family: 'Passion One', cursive;
font-size: 40px;
margin-bottom: 20px;
}
#author {
color: #A2A2A2;
font-size: 20px;
font-weight: 400;
font-style: italic;
font-family: 'Passion One', cursive;
}
#twitter-share {
display: block;
background-color: #1da1f2;
color: #fff;
width: 140px;
height: 50px;
border-radius: 5px;
font-size: 20px;
line-height: 50px;
border: 1px solid #1da1f2;
transition: 0.5s;
cursor: pointer;
margin: 0 auto;
}
#twitter-share:hover {
background-color: #fff;
color: #1da1f2;
}