forked from gminovska/RandomQuoteMachine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
107 lines (90 loc) · 1.82 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
html {
background: url(images/mountains.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
background-color: transparent;
}
#container {
width: 50%;
/*height: 300px;*/
background-color: rgba(228, 228, 228, 0.83);
margin: 0 auto;
/*centering the quote horizontally and vertically*/
display: flex;
justify-content: center;
align-items: center;
}
header {
/*background-color: gainsboro;*/
text-align: center;
}
h1, h3 {
font-family: 'Special Elite', cursive;
}
header h1 {
font-weight: 100;
color: rgba(252, 139, 128, 0.75);
margin-bottom: 0;
}
header h3 {
color: #9E9E9E;
font-size: 1em;
font-family: 'Merriweather', 'Georgia', serif;
font-weight: 100;
margin: 0 0 50px 0;
}
blockquote {
border: none;
}
blockquote p {
padding: 25px;
text-align: center;
font-size: 2em;
font-family: 'Special Elite', cursive;
}
blockquote cite {
display: block;
text-align: right;
font-size: 1.8em;
font-family: 'Merriweather', 'Georgia', serif;
margin-bottom: 20px;
color: #fc8b80;
}
.buttons {
background: gainsboro;
width: 50%;
margin: 0 auto;
padding: 20px 0;
/*make buttuns equally distributed*/
display: flex;
justify-content: space-around;
}
.btn:focus, .btn:active {
outline: none !important;
}
.btn-default:hover {
background-color: rgba(252, 139, 128, 0.75);
}
.btn-circle.btn-xl {
width: 70px;
height: 70px;
padding: 10px 16px;
font-size: 24px;
line-height: 1.33;
border-radius: 35px;
}
#github {
color: rgba(96, 125, 139, 0.51);
}
#github:hover {
color: rgba(252, 139, 128, 0.75);
}
@media (max-width:800px) {
#container, .buttons {
width: 80%;
}
}