-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.css
110 lines (104 loc) · 1.82 KB
/
about.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
html{
scroll-behavior:smooth;
}
body{
margin:0px;
padding: 0px;
background-color: rgb(17, 16, 17);
}
#navigation_bar{
display: flex;
background-color: whitesmoke;
height: 80px;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
}
#nav{
display: flex;
}
#nav ul{
display: flex;
padding-right:-200px;
}
#nav ul li{
display: flex;
list-style: none;
padding:30px;
font-size: x-large;
}
#nav ul li a{
text-decoration: none;
color: black;
font-weight: bold;
}
#nav ul li a:hover{
color:green;
}
#about h1{
color:white;
}
footer{
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
background-color: white;
}
footer p{
font-family: sans-serif;
}
footer p:nth-child(1){
font-size: 30px;
font-weight: bold;
color:#191919;
line-height: 10px;
font-family: sans-serif;
}
footer p:nth-child(2){
font-size: 20px;
color:#1a1a19;
width: 600px;
text-align:center;
font-weight: bold;
font-family: sans-serif;
}
.social-icons a{
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
margin: 20px 10px;
border-radius: 50%;
}
.social-icons{
display: flex;
}
.social-icons i{
color:black;
}
.social-icons a:hover{
background-color:#000000;
box-shadow:2px 2px 12px rgba(0,0,0,0.2);
transition:all ease 0.3s,
}
.social-icons a:hover i{
color:white;
transition:all ease 0.3s;
}
.footer-bottom{
background:rgb(24, 23, 23);
color: #afafaf;
height:40px;
width:100%;
text-align:center;
position: absolute;
bottom: 0px;
left:0px;
padding-top: 20px;
font-family: sans-serif;
}