forked from MrAshwin2142/OpenQuotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (94 loc) · 1.54 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
p {
font-size: 1em;
line-height: 1.5em;
margin-bottom: 0.5em;
}
h1 {
font-size: 1.8rem;
margin-bottom: 1rem;
}
a {
text-decoration: none;
color: #000080;
}
a:hover {
color: #0303d4;
}
body {
font-family: "Arial, Helvetica, sans-serif";
/* background-image: url(images/25.png); */
background-attachment: fixed;
background-position: center;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
margin: 0;
font-size: 16px;
line-height: 1.5;
}
.container {
text-align: center;
max-width: 60%;
margin: 0 auto;
color: black;
}
a {
color: rgb(5, 90, 23);
}
.contribute-section {
display: block;
position: fixed;
bottom: 20px;
text-align: center;
}
.contribute-section a {
text-decoration: none;
}
.contribute-section p {
margin: 0;
}
#author {
text-align: right;
}
@media screen and (max-width: 480px) {
.container{
max-width: 98%;
}
h1{
font-size: 24px;
}
.contribute-section p {
font-size: 12px;
}
}
@media screen and (max-width: 720px) {
.container{
max-width: 90%;
}
}
@media screen and (max-width: 300px) {
body {
font-size: 10px;
background-position: right;
}
}
@media screen and (min-width: 301px) and (max-width: 601px) {
body {
font-size: 14px;
background-position: right;
}
}
@media screen and (min-width: 601px) and (max-width: 1024px) {
body {
font-size: 18px;
}
}
@media screen and (min-width: 1025px) {
body {
font-size: 20px;
}
}