-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
126 lines (112 loc) · 1.71 KB
/
main.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
* {
margin: 0;
padding: 0;
}
.main {
height: 500px;
width: 100%;
background-color: black;
}
/*a :hover{
background-color:white;
}*/
/* unvisited link */
/*a:link {
color: black;
}
/* visited link */
a:visited {
color: black;
}
/* mouse over link */
a:hover {
color: white;
}
/* selected link */
/*a:active {
color:black;
}*/
a {
font-weight: normal;
/* color: black;*/
font-style: normal;
text-decoration: none;
font-size: larger;
}
header {
height: 80px;
width: 100%;
background-color: red;
position: fixed;
}
.main h3 {
color: white;
padding-top: 20px;
text-align: center;
}
ul {
float: right;
padding: 30px;
}
ul li {
display: inline;
padding: 20px;
/*margin: 20px;*/
}
h1 {
font-style: inherit;
font-weight: bolder;
color: mintcream;
text-align: center;
padding-top: 220px;
}
.content {
height: 200px;
width: 100%;
text-align: center;
}
/* .fa */
.fa {
padding: 20px;
font-size: 30px;
width: 20px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius: 50%;
}
/*.fa:hover {
opacity: 0.7;
/* padding: 20px;
font-size: 30px;
width: 20px;
text-align: center;
text-decoration: none;
}
/* Add a hover effect if you want*/
.fa:hover {
opacity: 0.7;
}
.fa {
float: left;
}
/* Set a specific color for each brand */
/* Facebook */
.fa-facebook {
background: #3b5998;
color: white;
margin: 10px;
}
/* Twitter */
.fa-twitter {
background: #55acee;
color: white;
margin: 10px;
}
.aboutMe {
padding-top: 20px;
font-size: 50px;
}
.hireMe {
padding-top: 10px;
}