-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
116 lines (97 loc) · 2.36 KB
/
App.css
File metadata and controls
116 lines (97 loc) · 2.36 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
.header-color {
background: #833ab4; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.landing-grid {
background: #833ab4; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #fcb045, #fd1d1d, #833ab4); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #fcb045, #fd1d1d, #833ab4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
text-align: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.projects-grid {
display: flex;
}
/* Resume Page css */
.resume-right-col {
background: #27221F;
color: white;
padding: 2em;
}
/* contact page css */
.contact-body {
margin: auto;
position: fixed;
width: 100%;
height: 100%;
justify-content: center;
padding-top: 2em;
}
.contact-grid {
text-align: center;
justify-content: center;
width: 80%;
height: 550px;
background: white;
color: black;
margin-bottom: 20px;
}
.contact-grid h2 {
font-family: 'Anton', sans-serif;
}
.contact-grid p {
font-family: 'Oxygen', sans-serif;
font-weight: bold;
}
.contact-grid hr {
border-top: 5px dotted black;
width: 50%;
margin: auto;
}
.contact-list i {
font-size: 66px;
padding-right: 5rem;
}
/* contact page css */
.avatar-img {
height: 250px;
padding-top: 5em;
}
.banner-text {
background-color: black;
opacity: .8;
width: 75%;
margin: auto;
border-radius: 10px;
}
.banner-text h1 {
font-size: 66px;
font-weight: bold;
color: white;
}
.banner-text hr {
border-top: 5px dotted white;
width: 50%;
margin: auto;
}
.banner-text p {
color: white;
font-size: 20px;
padding: 1em;
}
.social-links {
display: flex;
justify-content: space-between;
width: 50%;
margin: auto;
}
.social-links i {
color: white;
font-size: 5em;
padding: 8px;
}