-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (87 loc) · 1.45 KB
/
styles.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
body,h1 {font-family: "Raleway", sans-serif}
body, html {
height: 100%;
scroll-behavior: smooth;
}
.bgimg {
background-image: url('img/back_compressed.jpg');
min-height: 100%;
background-position: center;
background-size: cover;
}
#about{
min-height: 100%;
background-image: linear-gradient(#bacbdb,#f6f9fa);
}
.logo{
height: 80px;
}
.jumbo{
font-size: 64px;
text-align: center;
}
.mobile-only{
display: none;
}
.pc-only{
display: block;
}
.vpa-container{
margin-bottom: 32px!important;
}
.vpa{
width: 60%;
float: left;
}
.vpa-copy{
width: 35%;
float: right;
}
@media screen and (max-width:700px){
.logo{
height: 60px;
}
.jumbo{
font-size: 48px;
text-align: center;
}
.mobile-only{
display: block;
}
.pc-only{
display: none;
}
.donate-button{
margin: 20px;
background-color: #edfeff;
border-radius: 40px;
width: 70px;
height: 70px;
text-align: center;
cursor: pointer;
line-height: normal;
font-family: 'Roboto', sans-serif;
}
}
.content{
display: none;
}
.preloader{
width: 100%;
height: 100%;
}
@keyframes preloaderAni{
from{
height: 80px;
}
to{
height: 100px;
}
}
.pre{
position: fixed;
height: 80px;
width: auto;
animation: preloaderAni 0.5s ease infinite;
animation-direction: alternate;
}