-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
162 lines (130 loc) · 1.75 KB
/
style.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
* {
margin: 0;
padding: 0;
}
body {
background: #000;
color: white;
font-family: Arial, Helvetica, sans-serif;
/* overflow-y: hidden; */
}
a {
text-decoration: none;
}
img {
width: 100%;
}
.home img {
width: 100%;
}
aside {
position: fixed;
background: #222;
top: 0;
left: 0;
width: 120px;
height: 100%;
overflow: none;
z-index: 1;
text-align: center;
}
aside img {
margin-bottom: -5px;
}
.material-icons .md-36 {
font-size: 36px;
}
aside a {
display: block;
padding: 15px 0;
color: white;
transition: all 0.35s;
text-transform: uppercase;
font-size: 0.75em;
}
aside p {
margin: 0;
padding: 0;
}
aside a:hover {
background: #000;
}
aside nav a:nth-child(2) {
background: #000;
}
aside nav a:nth-child(2):hover {
background: red;
}
aside nav a:nth-child(3) {
background: #000;
}
aside nav a:nth-child(3):hover {
background: yellow;
}
aside nav a:nth-child(4) {
background: #000;
}
aside nav a:nth-child(4):hover {
background: green;
}
aside nav a:nth-child(5) {
background: #000;
}
aside nav a:nth-child(5):hover {
background: blue;
}
main {
max-width: 980px;
background: #000;
margin-left: 20%;
padding: 12px 50px;
}
header {
text-align: center;
letter-spacing: 2px;
}
header h1 {
font-weight: bold;
letter-spacing: 4px;
}
header h5 {
font-weight: 300;
letter-spacing: 4px;
color: orange;
}
section {
margin: 200px;
}
.header div {
text-align: center;
}
.header div h3 {
color: red;
}
li {
text-align: left;
list-style: none;
}
.about,
.folio {
line-height: 1.5em;
letter-spacing: 1px;
}
.about p {
color: orange;
}
.about span {
color: white;
}
.about h3 {
margin: 50px 0;
}
.container {
width: 100%;
background-color: #b2b2b2;
}
.skills {
text-align: right;
padding-right: 20px;
line-height: 30px;
}