-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.css
More file actions
97 lines (85 loc) · 1.88 KB
/
Copy pathportfolio.css
File metadata and controls
97 lines (85 loc) · 1.88 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
/************************************************************************
ABOUT ME
************************************************************************/
.about_me_section {
width: 100%;
background-color: #0094ff;
text-align: center;
}
.profile_pic {
border: 10px solid #0063aa;
border-radius: 100%;
margin: 25px;
}
.about_me {
color: white;
padding: 25px;
padding-top: 0px;
}
.title {
text-align: center;
font-size: 40px;
color: #4190c8
}
.body {
text-align: center;
font-size: 30px;
color: #3e5470;
}
/************************************************************************
PORTFOLIO
************************************************************************/
.portfolio_section {
width: 100%;
background-color: white;
text-align: center;
margin-bottom: 100px;
}
.portfolio {
color: #0094ff;
padding-left: 75px;
padding-right: 75px;
}
.button {
font-size: 30px;
text-decoration: none;
color: white;
border: 5px solid #0063aa;
transition-duration: .2s;
padding: 10px;
background-color: #0063aa;
margin-right: 5px;
margin-left: 5px;
}
.button:hover {
color: #0063aa;
background-color: white;
transition-duration: .2s;
}
/************************************************************************
FOOTER
************************************************************************/
footer {
margin: 0 auto;
height: 80px;
width: 100%;
background-color: #808080;
position: fixed;
bottom: 0;
}
.footer_links {
margin: 15px;
float: right;
width: 50px;
height: 50px;
}
.footer_links:hover {
opacity: .5;
}
/************************************************************************
GENERAL
************************************************************************/
body {
margin: 0px;
font-family: Verdana, Arial;
}