-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (71 loc) · 1.76 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
body{
background-image: url("photos/home.jfif");
background-repeat: no-repeat;
background-size: cover;
}
h1{
color: rgb(1, 3, 3);
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 150px;
} h2{
color: rgb(1, 3, 3);
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 50px;
}.header {
overflow: hidden;
background-color: rgb(7, 82, 117);
/*padding: 20px 10px;*/
}
.header img{
height: 50px;
width: 50px;
}
/* Style the header links */
.header a {
float: left;
color: white;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
font-size: 25px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
/* Change the background color on mouse-over */
.header a:hover {
background-color: rgb(88, 3, 3);
color: White;
}
.header a.active {
background-color: rgb(54, 54, 1);
color: white;
}
/* Float the link section to the right */
.header-Right {
float: right;
}
.footer{
position:fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: rgb(153, 245, 125);
color: rgb(13, 151, 75);
text-align: center;
}
#content{
color: maroon;
text-align: justify;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 75px;
}