-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
152 lines (115 loc) · 2.1 KB
/
style1.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
background-color: aliceblue;
font-family: 'Nunito Sans', sans-serif;
}
nav{
display: flex;
justify-content: space-around;
align-items: center;
min-height: 8vh;
background-color: #114e99;
font-family: 'Nunito Sans', sans-serif;
padding: 10px;
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.267);
}
.logo {
text-shadow: 2px 2px 5px #0b3568;
color: #fffefc;
letter-spacing: normal;
font-size: 25px;
display: flex;
align-items: center;
text-decoration: none;
}
.nav-links {
display: flex;
justify-content: space-around;
letter-spacing: 2px;
text-shadow: 2px 2px 5px #0b356883;
font-size: 20px;
width: 40%;
}
.nav-links a {
color: aliceblue;
text-decoration: none;
}
.nav-links a:active {
color: rgb(247, 247, 39);
}
.nav-links a:hover {
font-weight: bold;
}
.nav-links li {
list-style: none;
}
/* FOOTER */
footer {
background-color: #114e99;
height: auto;
width: 100%;
font-family: 'Nunito Sans', sans-serif;
padding-top: 20px;
color: aliceblue;
box-shadow: 0px -5px 6px 0px rgba(0, 0, 0, .2);
}
.footer-content {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.footer-content h3 {
font-size: 1.5rem;
font-weight: 400;
text-transform: capitalize;
line-height: 3rem;
}
.footer-content p {
max-width: 1500px;
margin: 10px auto;
line-height: 28px;
font-size: 18px;
}
.socials {
list-style: none;
display: flex;
align-items: center;
justify-content: center;
margin: 1rem 0 3rem 0;
}
.socials li {
margin: 0 10px;
}
.socials a {
text-decoration: none;
color: rgba(240, 248, 255, 0.685);
}
.socials a i {
font-size: 1.1rem;
transition: color .4s ease;
}
.socials a:hover i {
color: rgb(255, 255, 21);
}
.footer-bottom {
background: #114e99;
width: 100%;
padding: 20px 0;
text-align: center;
}
.footer-bottom p {
font-size: 14px;
word-spacing: 2px;
text-transform: capitalize;
}
.footer-bottom span {
text-transform: uppercase;
opacity: .4;
font-weight: 200;
}