forked from Arunjay126/Hacktoberfest-21
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
76 lines (66 loc) · 1.09 KB
/
home.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
html,body{
margin: 0;
padding: 0;
overflow-x: hidden;
}
a , a:hover , a:link, nav a {
text-decoration: none;
color:black;
}
nav a:hover{
cursor: pointer;
}
.main{
margin:0;
padding: 0;
background: url("background.svg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
height:100vh;
width:100vw;
position: relative;
}
.hacktoberfest
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.contributors{
background: url("contributors.svg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.footer{
color:white;
background: black;
font-size: 20px;
}
.footer-heading{
font-size: 30px;
}
.footer-icon{
font-size: 50px;
}
.footer-icon-name{
font-size: 20px;
}
.nav-head{
font-size: 27.5px;
font-weight: 700;
}
.qrcode {
position: absolute;
bottom: 0;
left: 2%;
text-align: left;
}
.qrcode > img:first-child {
width: 30%;
}
.qrcode .text-white {
font-size: 15px;
}