-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
124 lines (106 loc) · 3.95 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Dancing+Script&display=swap');
html {
box-sizing: border-box; /* prevents padding from stretching div out */
}
body {
margin:0px;
min-height: 100vh; /* VH = viewport height, stretches full hieght of screen */
background-color: #777777;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
font-family: Architects, sans-serif;
color: #000000;
font-weight: 700;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}
.qte-cntnr {
width: auto;
max-width: 900px;
border-radius: 5px;
background-color: rgba(125, 175, 255, 0.1);
padding-top: 15px;
padding-right: 15px;
padding-bottom: 15px;
padding-left: 15px;
box-shadow: 0px 0px 10px #555;
}
.qte-txt {
/* NOTE: 1rem = 16px */
font-size: 1.5rem;
}
.qte-athr {
font-size: 1rem;
font-weight: 400;
font-style: italic;
}
.qte-txt,
.qte-athr {
margin-bottom: 15px;
}
/* adjust to quote size */
.lng-qte {
font-size: 1.75rem;
}
.fa-quote-left {
font-size: 2rem;
color: #aaaaaa;
}
.btn-cntnr {
display: flex;
justify-content: space-between;
}
.btn-cntnr button {
cursor: pointer;
height: 2.5rem;
border: none;
border-radius: 3px;
outline: none;
color: #555;
background-color: #cccccc;
box-shadow: 0px 3px 2px #555555;
padding-left: 15px;
padding-right: 15px;
}
.btn-cntnr .fa-twitter {
font-size: 20px;
}
.btn-cntnr button:hover {
filter: brightness(110%);
}
.btn-cntnr button:active {
transform: translate(0px, 3px);
color:#000000;
box-shadow: 0px 0px 0px #000000;
}
/* loader */
.loader {
border: 16px solid #f3f3f3; /* Light grey */
border-top: 16px solid lightgreen; /* light green */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/*===============================================
Media Queries
===============================================*/
/* screens below 1000px */
@media screen and (max-width:1000px){
.qte-cntnr {
/* declaration / T and B / L and R */
margin: auto 15px;
}
.qte-athr {
color: blue;
}
}