-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (122 loc) · 2.62 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
125
126
127
128
129
130
131
132
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
/* prevents padding from adding extra width or extra height to the page */
html {
box-sizing: border-box;
}
/* always stretch our background at least the full height of the screen, even if the content isn't enough to take up the full height of the screen */
body {
margin: 0;
font-family: Permanent Marker, sans-serif;
background: linear-gradient(to left, #FDFBFB, #EBEDEE 70%);
}
h1{
text-align: center;
margin-top: 25px;
margin-bottom: 10px;
font-size: 65px;
letter-spacing: 15px;
background: linear-gradient(to right, #30CFD0 0%, #481a81 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h2 {
text-align: center;
margin-top: 10px;
margin-bottom: 15px;
font-size: 40px;
letter-spacing: 15px;
background: linear-gradient(to right, #6252c5 0%, #2a9fde 33%, #21e499 66%, #7ff658 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Loader */
.loader {
position:fixed;
top:0;
left:0;
right: 0;
bottom:0;
background: rgba(255,255,255,0.8);
}
.loader img {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/* Image Container */
.image-container {
margin: 10px 30%;
}
.image-container img {
width: 100%;
margin-top: 5px;
}
/* Media Query: Large SmartPhone */
@media screen and (max-width: 1600px) {
.image-container {
margin: 10px 27%;
}
}
@media screen and (max-width: 1400px) {
.image-container {
margin: 10px 25%;
}
}
@media screen and (max-width: 1200px) {
h1{
font-size: 60px;
letter-spacing: 12px;
}
h2{
font-size: 42px;
letter-spacing: 12px;
}
.image-container {
margin: 10px 20%;
}
}
@media screen and (max-width: 1000px) {
.image-container {
margin: 10px 15%;
}
}
@media screen and (max-width: 900px) {
h1{
font-size: 55px;
letter-spacing: 10px;
}
h2{
font-size: 38px;
letter-spacing: 10px;
}
.image-container {
margin: 10px 13%;
}
}
@media screen and (max-width: 780px) {
h1{
font-size: 45px;
letter-spacing: 8px;
}
h2{
font-size: 30px;
letter-spacing: 8px;
}
.image-container {
margin: 10px 10%;
}
}
@media screen and (max-width: 600px) {
h1{
font-size: 40px;
letter-spacing: 7px;
}
h2{
font-size: 25px;
letter-spacing: 7px;
}
.image-container {
margin: 10px;
}
}