-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
164 lines (150 loc) · 2.99 KB
/
style.css
File metadata and controls
164 lines (150 loc) · 2.99 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
body {
background-image: url("images/green_cup.png");
font-family:'Arial', 'Helvetica Neue', Helvetica, sans-serif;
color: #4aaaa5;
margin: 0;
padding: 0;
width: 960px;
border-color:#ddd;
}
a {
font-family:'Arial', 'Helvetica Neue', Helvetica, sans-serif;
color: #777;
text-decoration: none;
}
h1{
font-family:"Georgia", Times, Times New Roman,serif;
border-color:#ccc;
font-size: 24px;
}
hr{
margin: 0em 1em;
}
/*NameHeader formats the area with my name */
#NameHeader {
background-color: #4aaaa5;
color: #ffffff;
padding: 8px;
margin-left: 20px;
float: left;
}
#mainH1 {
padding: 0px, 20px;
}
/* Navigation formats the area with the links
on the top of the page */
#navigation {
float: right;
margin-right: 50px;
padding: 0px 15px;
}
#navigation ul li { display: inline; }
/* Controls the font color for the names of
the page and connect with me */
.headings2 {
color: #4aaaa5;
align-content: center;
}
.topLinks {
padding: 0px 15px;
}
/*Below is the main container for both the main
content and the contact us sidebar */
#mainContainer {
clear: both;
width: auto;
height: 1000px;
border-top: 2px solid gray;
/* background-image: url("green_cup.png");*/
background-repeat: repeat;
}
/*Used in the about me section to float the
image to the left of the paragraph. */
#imageFloat {
float: left;
padding-right: 5px;
}
/*controls and sizes the images
in the connect with me sidebar*/
.connectImages {
padding: 0;
height: 70px;
width: 70px;
}
/*controls the images in the portfolio
section*/
#galleryImages {
margin: 10px;
height: 200px;
width: 200px;
}
h2 {
position: absolute;
top: 150px;
left: 0;
width: 100%;
color: #ffffff;
background-color: #4aaaa5;
display: inline-block;
}
/*Below is the code for the container that
holds the main content*/
#mainContent {
width: 650px;
margin-left: 10px;
padding: 5px;
float: left;
background-image: url("images/dark_embroidery.png");
border: 2px;
display: inline-block;
}
/*Below is the code for the container that
holds the images to connect with*/
#connectWith {
width: 270px;
margin: 0px 10px;
background-image: url("images/dark_embroidery.png");
border: 2px;
display: inline-block;
}
/*the container that holds the images for social media*/
#imageContainer{
clear: both;
margin: auto;
text-align: center;
}
/*controls the size of the message section in contact me*/
#message {
width: 375px;
height: 200px;
}
/*below is the code for the images in the portfolio
section */
.image-wrapper {
position: relative;
padding: 10px;
float: left;
}
/*below is the code for the text overlaying images
on the portfolio page*/
.image-wrapper p {
position: absolute;
top: 180px;
width: 275px;
background-color: #4aaaa5;
color: #FFF;
padding: 10px 0px;
text-align: center;
opacity: 0.8;
}
/* Code for the footer */
.footer{
clear: both;
background-color:#666;
padding: 30px;
margin: 0 auto;
color: #fff;
border-top: 4px solid #4aaaa5;
text-align: center;
font-size: 12px;
}