-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (97 loc) · 1.49 KB
/
styles.css
File metadata and controls
111 lines (97 loc) · 1.49 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
@charset"utf-8";
@media only screen and (min-width: 481px){
html{
background:url(dark_green.jpg) 100%/ cover;
}
body{
background: rgb(107, 88, 151);
margin-left:10%;
margin-right:10%;
margin-top:0px;
margin-bottom:0px;
min-height:920px;
box-shadow:inset 20px 0px 80px rgb(87,67,131),
inset -20px -0px 80px rgb(87,67,131);
}
aside{
text-align:center;
}
aside ul{
display:none;
}
aside img{
width:20%;
border:40px solid;
border-radius:60px;
border-image: url(border.svg);
border-image-repeat:stretch;
border-image-slice:350;
}
article{
padding:20px;
font-size: 1.5em;
line-height:2em;
text-align:center;
}
footer{
background-color:black;
text-align: center;
color:white;
font-size:1em;
padding:1px;
}
footer a{
color:white;
text-decoration:none;
background-color:red;
border-radius:50px;
padding:5px;
}
/*Header Navigation Style Section*/
header{
background: url(banner.png);
height:20%;
}
header h1{
color:gold;
font-family: 'Cinzel Decorative', cursive;
font-size:300%;
padding:4%;
line-height:1em;
}
nav{
display:block;
margin-left:auto;
margin-right:auto;
height:5.5%;
}
nav ul{
list-style-type: none;
margin: 0;
padding: 0;
overflow:hidden;
background-color:#333;
}
nav ul a{
float:left;
}
nav ul a li{
display: block;
color:white;
text-align:center;
padding:14px 20px;
text-decoration:none;
}
.active{
background-color:rgb(0, 102, 0);
}
nav ul a li:hover{
background-color:black;
}
#right{
float:right;
}
.navicon{
display:none;
}
}