generated from OPCODE-Open-Spring-Fest/template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
style2.css
138 lines (133 loc) · 2.36 KB
/
style2.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
133
134
135
136
137
138
* {
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
box-sizing: border-box;
}
body {
font-family: montserrat;
background: url(https://wallpapercave.com/wp/wp3311446.jpg) no-repeat;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-size: cover;
background-position: center;
position: relative;
}
nav {
background: #48279c;
height: 80px;
width: 100%;
position: fixed;
top: 0;
background: #8d65f3;
height: 80px;
width: 100%;
}
label.logo {
color: white;
font-size: 35px;
line-height: 80px;
padding: 0 100px;
font-weight: bold;
}
nav ul {
float: right;
margin-right: 20px;
}
nav ul li {
display: inline-block;
line-height: 80px;
margin: 0 5px;
}
nav ul li a {
color: white;
font-size: 17px;
text-transform: uppercase;
}
a.active,
a:hover {
background: #1b9bff;
transition: 0.5s;
}
.checkbtn {
font-size: 30px;
color: white;
float: right;
line-height: 80px;
margin-right: 40px;
cursor: pointer;
display: none;
}
#check {
display: none;
}
footer {
background-color: #111;
position: absolute;
bottom: 0;
width: 100%;
}
.footerContainer {
width: 100%;
padding: 70px 30px 20px;
}
.socialIcons {
display: flex;
justify-content: center;
}
.socialIcons a {
text-decoration: none;
padding: 10px;
background-color: white;
margin: 10px;
border-radius: 50%;
}
.socialIcons a i {
font-size: 2em;
color: black;
opacity: 0.9;
}
.socialIcons a:hover {
background-color: #111;
transition: 0.5s;
}
.socialIcons a:hover i {
color: white;
transition: 0.5s;
}
.footerNav {
margin: 30px 0;
}
.footerNav ul {
display: flex;
justify-content: center;
}
.footerNav ul li a {
color: white;
margin: 20px;
text-decoration: none;
font-size: 1.3em;
opacity: 0.7;
transition: 0.5s;
}
.footerNav ul li a:hover {
opacity: 1;
}
.footerBottom {
background-color: #000;
padding: 20px;
text-align: center;
}
.footerBottom p {
color: white;
}
.designer {
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 400;
margin: 0px 5px;
}