-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexstyles.css
94 lines (75 loc) · 2.1 KB
/
indexstyles.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
/*
New Perspectives on HTML
Michelle's Portfolio Index Style Sheet
Author: Michelle Pierce
Date: 11/30/2016
Filename: indexstyles.css
Supporting Files: none
*/
* {
display: block;
font-family: Georgia, Arial, Helvetica, Sans-serif;
color: rgb(25,25,112);
}
body {
display: block;
background: -o-linear-gradient(black, rgb(25,25,112) 20%, white 99%);
background: -ms-linear-gradient(black, rgb(25,25,112) 20%, white 99%);
background: -webkit-linear-gradient(black, rgb(25,25,112) 20%, white 99%);
background: linear-gradient(black, rgb(25,25,112) 20%, white 99%);
background-size: cover;
}
header {
display: block;
background-image: url(limegreen.jpg);
background-repeat: no-repeat;
width: 85%;
max-width: 780px;
min-width: 250px;
text-align: center;
color: rgb(25,25,112);
text-shadow: black 1px 1px 0px, rgba(90, 127, 0, 0.7) 5px 5px 10px;
margin: 1em;
padding: 5px;
font-size: 2em;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
}
header h2 {
font-size: 1.2em;
font-style: italic;
margin: 0em;
padding-bottom: 0.5em;
}
nav.horizontal {
width: 99%;
max-width: 780px;
min-width: 250px;
}
nav.horizontal li{
background: url(limegreen.jpg);
font-family: Georgia, Arial, Helvetica, Sans-serif;
border: 1px solid rgb(171, 171, 171);
font-size: 18px;
font-weight: bold;
float: left;
height: 50px;
letter-spacing: =3px;
line-height: 50px;
margin: 3px 0.5%;
text-align: center;
width: 24%;
-moz-background-color: rgb(50,205,50);
-webkit-background-color: rgb(50,205,50);
background-color: rgb(50,205,50);
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;
-moz-box-shadow: inset white 3px 3px 2px, inset rgb(147, 207, 207) -5px -5px 5px;
-webkit-box-shadow: inset white 3px 3px 2px, inset rgb(147, 207, 207) -5px -5px 5px;
box-shadow: inset white 3px 3px 2px, inset rgb(147, 207, 207) -5px -5px 5px;
}
nav.horizontal li:hover{
background-color: rgb(255,255,255);
}