-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexstyle.css
More file actions
123 lines (109 loc) · 2.16 KB
/
Copy pathindexstyle.css
File metadata and controls
123 lines (109 loc) · 2.16 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
body {
font-family: Verdana, sans-serif;
padding: 0px;
margin: 0px;
background-color: #eae7dc;
}
.navlinks {
position: fixed;
top: 0;
width: 100%;
}
.navlinks ul {
list-style: none;
background-color: #e98074;
padding: 0;
margin: 0;
text-align: right;
border-bottom: 3px solid goldenrod;
}
.navlinks li {
display: inline-block;
}
.navlinks a {
text-decoration: none;
color: darkslategray;
display: block;
padding: 30px 30px;
text-transform: uppercase;
font-weight: bold;
text-align: center;
}
.navlinks a:hover {
background-color: #eae7dc;
}
h1 {
margin-top: 10px;
margin-left: 25px;
margin-bottom: 10px;
color: #e98074;
}
/*format content*/
.home-content {
max-width: 80%;
margin: auto;
margin-top: 140px;
}
/*format content title container*/
.home-content-title-container {
text-align: center;
max-width: 80%;
margin: auto;
padding: 1rem;
background-color: #eae7dc;
box-shadow: rgba(190, 80, 120) 0px 5px 15px;
border-radius: 1rem;
margin-bottom: 2.5rem;
}
/*format content title container header*/
.home-content-title-container h1 {
font-family: Verdana;
font-size: 2.5rem;
}
/*formatting content blurb title*/
.home-content-blurb-title {
text-align: center;
max-width: 100%;
min-width: 100%;
margin: auto;
font-family: Verdana;
font-size: 2rem;
background-color: white;
border-radius: 1rem;
padding: 0.5rem 0rem 0.5rem 0rem;
}
/*format content on main page*/
.home-content-blurb {
background-color: #eae7dc;
padding: 1rem;
max-width: 80%;
margin: auto;
box-shadow: rgba(190, 80, 120) 0px 5px 15px;
border-radius: 1rem;
margin-bottom: 3rem;
}
/*format title*/
.home-content-blurb-title {
text-align: center;
margin-bottom: 0.3rem;
color: darkslategray;
}
/*format paragraph content*/
.home-content-blurb article p {
margin: 0.75rem 0.75rem 0.75rem 0.75rem;
word-wrap: break-word;
font-size: 20px;
line-height: 1.5;
hyphens: auto;
color: darkslategray;
}
footer {
display: block;
border-top: 3px solid darkgoldenrod;
}
#foot {
color: darkslategray;
padding-top: 20px;
margin-left: 30px;
margin-bottom: 30px;
}