-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (94 loc) · 1.85 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*Webpage Font*/
html{
font-family: Verdana;
}
/* Adding a dark blue background colour to navigation bar */
#topnav {
background-color: #1c1d52;
overflow: hidden;
text-align: right;
}
/* Styling links within navigation bar */
#topnav a {
float: right;
color: #f2f2f2;
text-align: right;
padding: 1.3vw 1.6vw;
text-decoration: none;
font-size: 1.5vw;
}
/* Changing colour of tabs on hover */
#topnav a:hover {
background-color: #A09DFF;
color: black;
text-align: left;
border-top: 0.5vw solid #3059BC;
border-radius: 0.5vw;
transition: 0.15s;
}
/* Adding colour to active/current tab */
#topnav a.active {
background-color: #669cdf;
color: white;
text-align: left;
border: 3px solid #4981A6;
border-radius: 10px
}
/*Styling Background*/
#bg {
margin:0px;
background-color: #f7e2b1;
text-align: left;
}
/*Adding Banner Image*/
#banner img{
padding: 0px;
width: 100%;
background-size: cover;
background-repeat: no-repeat;
}
/*Banner overlay*/
#banner p {
position: absolute;
top: 30%;
width: 100%;
text-align: center;
font-size: 30px;
color: #1c1d52;
}
@media screen and (min-width:1024) {
#banner p{
top: 50%;
}
}
.social {
position: fixed;
top: 50%;
transform: translateY(-50%);
}
.social a{
display: block;
text-align: center;
padding: 10px;
font-size: 20px
}
#contact_us {
font-size: 30px;
color: #1c1d52;
}
#contact_us h3 {
text-align: center;
color:deepskyblue;
}
#contact_us img {
display: block;
margin-left: auto;
margin-right: auto;
}
.footer {
color: #f2f2f2;
background-color: #1c1d52;
text-align: center;
padding: 50px;
margin-top: 5px;
}