-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (54 loc) · 1022 Bytes
/
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
html {
scroll-behavior: smooth;
}
.gradient {
background: #2dbdce;
background: linear-gradient(to right, #225b61 0%, #2dbdce 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradientDark {
background: #2dbdce;
background: linear-gradient(to right, #225b61 0%, #2295a1 50%, #225b61 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background: #e1e1e1;
padding-top: 15px;
}
footer div ul li {
list-style: none;
margin: 0 10px;
}
.mainContent {
padding-top: 60px;
padding-bottom: 60px;
}
.footerIcon {
width: 25px;
cursor: pointer;
}
#home {
min-height: 70vh;
}
nav {
position: fixed;
top: 0;
width: 100%;
}
#contribute{
min-height: 500px;
}
#contributeForm div {
display: grid;
place-items: center;
}
#contributeForm input{
width: 230px;
margin: 5px 0 5px 0;
}