forked from Kwiddy/Durham-Yr1-ProgFormative1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (112 loc) · 2 KB
/
styles.css
File metadata and controls
129 lines (112 loc) · 2 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#thehead {
background-image: url('HeaderBackground.jpg');
background-repeat: no-repeat;
background-position: 10% 10%;
background-attachment: fixed;
padding: 0px;
}
#sideimg {
height: auto;
width: auto;
max-width: 250px;
max-height: 250px;
}
#navbar {
height: 800px;
background-color: #e1e3e8;
padding: 10px;
}
.overlay {
opacity: 0;
transition: .5s ease;
background-color: #0000cc;
}
.imfade:hover .overlay {
opacity: 1;
}
.hiddenmessage {
color: white;
}
.highlight {
border-style: double;
margin: 20px;
padding: 20px;
}
#col-sm-4 {
background-color: #555;
height: 500px;
}
div#navbar ul {
list-style-type: none;
margin: 5px;
padding: 5px;
width: auto;
line-height: 80px;
text-align: center;
}
div#navbar ul li{
display: block;
color: #000;
padding: 8px 16px 2px 8px;
text-decoration: none;
background-color: #c2c4c6;
margin: 5px
}
div#navbar ul li:hover{
background-color: #555;
color: white;
}
div#navbar ul li:hover a{
color: white;
padding-top: 40px;
padding-bottom: 40px;
padding-left: 50px;
padding-right: 50px;
}
#col-sm-4.li a:hover:not(.active){
border-style: solid;
border-width: 2px;
color: green;
text-decoration: none;
}
body {
background-color: #f4f4f4;
}
h1 {
font-family: Helvetica;
color: white;
text-align: center;
vertical-align: middle;
line-height: 200px;
font-weight: bold;
background-image: url("h1backgroundim.jpg");
min-height: 200px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
margin: 0;
padding: 0;
}
h2 {
font-weight: bold;
margin: 10px;
font-size: 40px;
padding: 10px;
line-height: 40px;
vertical-align: middle;
}
p {
margin: 0;
}
p #maintext{
font-family: Helvetica;
font-size: 15pt;
color: black;
text-align: left;
font-weight: bold;
}
footer {
background-color: #4e4f51;
color:#9c9fa3;
}