forked from CSC4110-Group1/CSC4110-Project-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (66 loc) · 1.13 KB
/
style.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
body {
background-image: white;
}
html{
min-height: 100%;
}
p {
animation: fadeInAnimation ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
.description,
.definition,
.pillars,
.footer-bottom,
.terms {
animation: fadeInAnimation ease 2s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
h1{
animation: fadeInAnimation ease 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
nav{
border-radius: 25px;
}
.footer-bottom {
padding-top: 100px;
font-size: 80%;
}
.footer-logo{
font-size: 180%;
}
.footer-bottom a:link,
.footer-bottom a:hover,
.footer-bottom a:active,
.footer-bottom a:visited{
text-decoration: none;
color:black;
}
.privacy-menu{
list-style-type: none;
}
.copyright{
padding-top:5em;
text-align: center;
}
.imgContainer {
height: 100px;
left: 0;
margin: auto;
position: absolute;
right: 0;
text-align: center;
top: -23px;
}