-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaincss.css
More file actions
98 lines (85 loc) · 1.89 KB
/
maincss.css
File metadata and controls
98 lines (85 loc) · 1.89 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.topnav { /* desinging the navigation bar */
background-color: #8dc3c4;
position: fixed;
top: 10px;
width:100%;
z-index: 1;
}
.topnav a {
float: left;
color: #000000;
text-align: center;
padding: 18px 18px;
text-decoration: none;
font-size: 20px;
box-shadow: inset 0 0 0 0 #346465;
transition: ease-in 1s;
}
.topnav a:hover { /* hover effect of the navigation bar */
box-shadow: inset 400px 0 0 0 #346465;
}
.topnav a.active { /* setting color when active */
background-color: #cde5e5;
}
.topnav .logo{ /* logo design and font */
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
float:left;
}
.topnav-right { /* floating items of the navigation bar to right */
float: right;
overflow: hidden;
height:55px;
}
.topnav-right, a{
padding-bottom:5px;
float: right;
}
.dropdown { /* desinging the dropdown list */
float: none;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 20px;
border: none;
outline: none;
color: black;
padding: 18px;
background-color: inherit;
font-family: inherit;
margin: 0px;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
font-size: 15px;
}
.dropdown:hover .dropdown-content {
display: block;
}
.footer{ /* desinging the footer */
margin:0 auto;
background: rgb(0, 0, 0); /* Fallback color */
background: rgba(70, 134, 134, 0.6); /* Black background with 0.5 opacity */
color: #f1f1f1;
padding: 20px;
text-align:center;
font-family:Verdana;
font-size:14px;
}
.bottom-links{
color: #f1f1f1;
text-decoration:none;
}