-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpersonal.css
More file actions
66 lines (65 loc) · 1.14 KB
/
personal.css
File metadata and controls
66 lines (65 loc) · 1.14 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
body {
background-color: #4d9596;
background-image: linear-gradient(transparent 50%, rgba(255,255,255,.1) 50%);
background-size: 50px 50px;
font-family: 'Open Sans', sans-serif;
color: white;
}
header {
margin-top: 20px;
text-align: center;
}
header > img {
height: 225px;
}
nav {
font-size: 35px;
color: white;
text-align: center;
text-shadow: 0 2px 5px gray;
}
.menu {
display: inline;
text-align: center;
margin: 10px 25px;
cursor: pointer;
}
.menu.active {
text-decoration: underline;
}
.menu a {
text-decoration: none;
color: white;
}
.menu:hover {
text-decoration: underline;
}
hr {
width: 50%;
text-align: center;
height: 2px;
}
.fade {
display: none;
width: 50%;
margin: 20px auto;
background-color: rgba(77, 149, 150, .7);
}
.fade.active {
display: block;
}
#portfolio {
width: 40%;
margin: 50px auto;
-moz-column-count: 2;
-moz-column-gap: 1em;
-webkit-column-count: 2;
-webkit-column-gap: 1em;
column-count: 2;
column-gap: 1em;
}
.box {
height: 175px;
width: 175px;
border: 1px solid darkblue;
}