-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (72 loc) · 1.59 KB
/
styles.css
File metadata and controls
85 lines (72 loc) · 1.59 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
@charset="utf-8";
/*Structural Styles*/
html {
background-image: url(4kwall.jpg);
background-size: cover;
height: 100%;
}
body {
background-color: rgb(200, 188, 209);
box-shadow: rgb(51, 51, 51) 10px 0px 40px, rgb(51, 51, 51) -10px 0px 40px;
border-left: 1px solid gray;
border-right: 1px solid gray;
min-height: 100%;
margin: 0px auto;
min-width: 400px;
max-width: 1024px;
width: 100%;
}
/* Navigation Styles */
nav.horizontal {
list-style: none;
text-align: center;
background-color: black;
word-spacing: 20px;
margin-top: 0px;
}
nav.horizontal li {
display: inline;
}
nav.horizontal a {
display: inline-block;
padding: 11px;
color: white;
text-decoration: none;
/* Found transition from https://stackoverflow.com/questions/6008324/fade-effect-on-link-hover*/
-o-transition: .5s;
-ms-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
}
li a:hover {
background-color: gray;
}
div img {
margin-left: 360px;
margin-top: 50px;
margin-bottom: 50px;
width: 30%;
box-shadow: 5px 10px 10px rgb(33, 54, 86);
}
li a:hover {
background-color: gray;
}
/* Article Styles */
article {
text-align: center;
font-size: 1.5em;
}
body header img {
width: 100%;
height: 100px;
}
div.head {
background-color: rgb(37, 68, 119);
height: 100px;
text-align: center;
font-size: 3em;
padding-top: 20px;
color: white;
text-shadow: 2px 2px purple;
}