-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
99 lines (81 loc) · 1.28 KB
/
index.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
.navbar {
overflow: hidden;
background-color: #0bb79d;
top: 0;
left: 0;
right: 0;
z-index: 100;
position: fixed
}
.navbar a.home {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a.login {
float: right;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Hover effect */
.navbar a:hover {
background-color: #d8cb12;
color: white;
}
footer {
background-color: #12d8ba;
color: #fff;
padding: 50px;
display: flex;
justify-content: space-between;
}
.column {
flex: 1;
padding: 0 20px;
}
.column h3 {
font-size: 18px;
margin-bottom: 10px;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 5px;
}
a {
text-decoration: none;
color: #fff;
}
.social-icons {
display: flex;
gap: 10px;
}
.social-icons a {
display: inline-block;
width: 30px;
height: 30px;
background-color: #fff;
border-radius: 50%;
text-align: center;
line-height: 30px;
}
.social-icons img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
.column {
width: 30%;
display: inline-block;
vertical-align: top;
text-align: left;
margin: 10px;
}