-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (96 loc) · 1.48 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
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: verdana;
}
.container {
display: flex;
width: 100%;
max-width: 1200px;
flex-direction: column;
background-color: rgba(1, 39, 47, 0.5);
margin: 0 auto;
}
.header {
display: flex;
width: 100%;
background-color: #01272f;
}
.profile {
display: flex;
flex-grow: 1;
flex-direction: column;
padding: 20px;
}
span.name {
color: #fff;
font-size: 36px;
padding: 15px 0px;
}
.profile .desc {
display: flex;
flex-grow: 1;
color: #b5a2ff;
line-height: 18px;
font-weight: bold;
font-family: verdana;
font-size: 12px;
text-align: justify;
}
.profile-pic {
display: flex;
align-items: center;
width: 25%;
padding: 20px;
}
.profile-pic img {
width: 100%;
box-sizing: border-box;
border: 5px solid #ffffff;
}
ul.links {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}
ul.links li {
margin-right: 10px;
}
ul.links li a.resume {
color: #fff;
line-height: 48px;
}
.projects {
flex-grow: 1;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.project {
align-self: flex-start;
display: flex;
flex-direction: column;
min-width: 20%;
margin: 30px;
padding: 20px;
border-radius: 5px;
background-color: #FFF;
box-shadow: 0px 0px 6px #000;
}
.project .title {
align-self: center;
font-size: 24px;
}
.project img {
align-self: center;
margin: 10px;
}
#background {
position: fixed;
z-index: -1;
background-color: #ddd;
}