-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainstyle.css
194 lines (194 loc) · 3.67 KB
/
mainstyle.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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
body {
background-color: #4E5166;
}
/* Background photo */
header, .navbar {
position: relative;
background-color: white;
margin: 0 auto;
width: 1000px;
background-size: cover;
text-align: center;
}
/* Menu items *//*
.navbar a {
color: white;
text-decoration: none;
padding: 5px;
border-radius: 5px;
}*/
.navbar a:link {
color: white;
text-decoration: none;
}
.navbar a:visited {
color: white;
text-decoration: none;
}
/* Menu links */
.nav.navbar-nav a:hover {
color: black;
text-decoration: : none;
background-color: grey;
}
.nav.navbar-nav a:active {
color: blue;
}
/* Menu */
.navbar {
font-weight: bold;
text-align: right;
background: #7C90A0;
}
/* Spacing for menu items */
.nav.navbar-nav > li {
padding-left:45px;
padding-right:45px;
}
.dropdown-menu {
background-color: #7C90A0;
color: red;
}
#propic {
position: absolute; /*Sets image in front of text*/
z-index: 10;
width: 175px;
top: 130px;
left: 20px;
border: 5px solid #B5AA9D;
border-radius: 0px;
background-color: white;
}
.dropdown-menu a:hover {
color: black;
}
/* Shih-Hsuan Huang */
header h1 {
position: absolute;
top: 260px;
padding: 0px 0px 0px 220px;
color: white;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.fa-linkedin {
background: #007bb5;
color: white;
}
.fa-facebook {
background: #3B5998;
color: white;
}
/* --------------------------MAIN/CONTACT/PORTFOLIO-------------------------- */
#footer_main, #footer_contact, #footer_portfolio {
background-color: white;
padding: 60px 0px 0px 0px;
margin: 0px auto;
width: 1000px;
}
/* --------------------------MAIN-------------------------- */
#footer_main {
background-color: white;
padding: 30px 0px 10px 0px;
margin: 0px auto;
width: 1000px;
}
#footer_main p {
margin: 0px;
background-color: white;
padding: 0px 40px 0px;
}
/*#footer_main p:hover {
color: red;
}*/
#footer_main h1 {
padding: 0px 40px 0px;
}
#footer_main h2 {
font-size: 1.5em;
}
#footer_main ol {
margin-left: 50px;
padding-top: 10px;
}
/* --------------------------CONTACT-------------------------- */
#footer_contact {
background-color: white;
padding: 30px 0px 10px 0px;
margin: 0px auto;
width: 1000px;
}
#footer_contact h1 {
margin: 20px 40px 20px;
}
#footer_contact table {
margin: 20px 40px 20px;
}
#footer_contact p {
top: 100px;
margin: 0px;
background-color: white;
padding: 0px 40px 0px;
}
/*#footer_contact p:hover {
color: red;
}*/
#table_contact table, td, th {
padding: 5px;
border: 1px solid gray;
}
/* --------------------------PORTFOLIO-------------------------- */
#footer_portfolio p {
margin: 0px;
background-color: white;
padding: 0px 40px 30px;
}
#footer_portfolio li {
margin-left: 20px;
background-color: white;
padding: 0px 0px 0px;
}
/*#footer_portfolio p:hover {
color: red;
}*/
#footer_portfolio h1,h2 {
margin: 0px;
padding: 0px 40px 10px;
}
.drawing {
height: 15em;
text-align: center;
margin-bottom: 1em;
padding-left: 33px;
}
.painting {
display: block;
height: 30em;
margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}
.gif {
display: block;
margin-left: auto;
margin-right: auto;
padding-bottom: 10px;
}
/* --------------------------Scroll to top button-------------------------- */
#topButton {
display: none;
position: fixed;
bottom: 20px;
right: 30px;
z-index: 99;
font-size: 18px;
border: none;
outline: none;
background-color: grey;
color: white;
cursor: pointer;
padding: 15px;
border-radius: 4px;
}
#topButton:hover {
background-color: #555;
}