forked from Anant7393/HackOctoberFest-2022
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (97 loc) · 1.7 KB
/
style.css
File metadata and controls
113 lines (97 loc) · 1.7 KB
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
@import url("https://fonts.googleapis.com/css2?family=Amatic+SC&family=Dancing+Script&family=Great+Vibes&family=Poppins:wght@100&family=Shadows+Into+Light&display=swap");
* {
margin: 0;
padding: 0;
}
body {
background: linear-gradient(#0f2027, #203a43, #2c5364);
color: white;
height: 100vh;
}
/* Navbar styling */
#navbar-fixed {
position: fixed;
}
nav {
width: 100%;
color: #bbb;
background: rgba(0, 0, 0, 0.4);
font-weight: bolder;
letter-spacing: 0.025em;
}
nav ul {
margin: 0;
}
nav ul li a {
color: white;
font-size: 20px;
font-family: "Poppins", sans-serif;
text-decoration: none;
padding: 2px 7px;
border-radius: 3px;
}
nav ul li {
display: inline-block;
padding: 0 3em;
line-height: 3em;
}
nav ul li a:hover {
background: rgba(132, 186, 7, 0.283);
color: rgb(226, 92, 97);
}
/* section content styling */
.content {
display: flex;
justify-content: center;
align-items: center;
height: 80vh;
text-align: center;
font-size: 17px;
margin: 0px 30px;
}
/* footer styling */
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
text-align: center;
padding: 9px;
background-color: #0f2027;
font-family: "Poppins", sans-serif;
}
.footer-content-center {
width: 100vw;
text-align: center;
}
.HF2022 {
font-weight: bold;
}
.icon-style {
height: 40px;
margin-left: 5px;
margin-top: 5px;
}
.icon-1 {
height: 45px;
width: 45px;
}
.icon-2 {
height: 43px;
width: 43px;
margin-right: 4px;
}
.icon-style:hover {
background-color: rgb(38, 170, 86);
padding: 5px;
border-radius: 50%;
}
.icon-3:hover {
padding: 7px;
}
.icon-style {
text-decoration: none;
}
/*----------------------
$MISC
----------------------*/