-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (69 loc) · 1.25 KB
/
style.css
File metadata and controls
82 lines (69 loc) · 1.25 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
.background-header {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("./images/me.jpg");
background-color: #cccccc;
height: 844px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
body {
padding-top: 72px;
}
.flash-game {
width: 550px;
height: 400px;
vertical-align: center;
}
.portrait {
margin-bottom: 10px;
}
.project-grid {
display: "flex";
flex-wrap: "wrap";
flex-flow: "row wrap";
justify-content: "space-around";
}
.project-grid .project {
background-color: #ffffff;
width: 300px;
height: 200px;
margin: 60px;
display: "flex";
}
.project-title, .project-grid p {
color: white;
text-align: center;
margin: 10px;
}
.project-grid p {
font-size: 12px;
}
.project-complete {
color: #00ff00;
font-weight: bold;
}
.project-ongoing {
color: #ffff00;
font-weight: bold;
}
.overlay {
top: 0px;
left: 0px;
height: 100%;
width: 100%;
opacity: 0;
justify-content: center;
align-self: center;
transition: .5s;
background-color: #000000;
}
.overlay:hover {
opacity: 0.75;
}
a i {
color: inherit;
}
hr {
background-color: white;
}