-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (82 loc) · 1.28 KB
/
style.css
File metadata and controls
84 lines (82 loc) · 1.28 KB
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
*{
padding: 0%;
margin: 0%;
font-family: "Lucida Console", "Courier New", monospace;
scroll-behavior: smooth;
}
body{
margin: 0%;
padding: 0%;
}
.outerNavbar{
position: fixed;
display: flex;
justify-content: center;
width: 100%;
background-color: #397686;
}
.navbar{
display: block;
}
.navbar>a{
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar>a:hover{
background-color: #000 ;
color: #397686;
}
.landingMsg{
letter-spacing: -1px;
font-size: 1.5em;
}
.blink{
animation: blink 1s infinite;
}
@keyframes blink {
50% {
opacity: 0;
}
}
.landingImgDiv>img{
border-radius: 50%;
height: 150px;
}
.scDownGif{
margin-top: 10vh;
height: 100px;
}
footer{
padding: 1%;
background-image: linear-gradient(#CFD8DC,#fff);
border-top:1px solid #000;
}
footer>div{
display: flex;
justify-content: center;
}
.socialLinks>div>a>img{
height: 35px;
}
.socialLinks>div{
display: inline-flex;
margin: 2% 2%;
}
Hr{
background-color: black;
height: 1px;
border: none;
width: 50%;
margin: auto;
}
.cpyRights{
margin-top: 1%;
}
u{
color: #3A7686;
}