-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
137 lines (113 loc) · 1.6 KB
/
styles.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
* {
padding: 0;
border: 0;
margin: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
height: 100%;
font-family: 'Source Sans Pro', sans-serif;
font-size: 20px;
font-weight: 300;
}
#root {
display: flex;
height: 100%;
}
nav {
width: 272px;
padding-top: 50px;
border-right: thin dotted black;
font-family: monospace;
}
nav ul {
margin: 0 auto;
width: 70px;
list-style-type: none;
}
nav li {
font-size: 16px;
margin-bottom: 8px;
}
.container {
flex: 1;
overflow: auto;
padding-left: 65px;
padding-top: 52px;
}
.main-header {
width: 682px;
}
.big-hey {
font-family: monospace;
margin-right: 28px;
font-size: 120px;
}
.intro {
font-family: monospace;
font-size: 60px;
color: #999;
}
.about {
font-size: 21px;
margin-top: 8px;
text-align: justify;
width: 670px;
}
img {
width: 304px;
height: 229px;
float: left;
border: 2px solid black;
margin-right: 20px;
}
.canvas-container {
position: absolute;
bottom: 0;
width: 272px;
}
canvas {
display: block;
border: 2px solid black;
margin: 0 auto 20px auto;
height: 250px;
width: 250px;
}
.resume-section {
display: flex;
width: 730px;
}
.section-name {
width: 160px;
font-family: monospace;
}
.section-name h3 {
font-weight: normal;
}
.section-content {
width: 570px;
}
.skills-section {
width: 570px;
font-size: 16px;
}
.section-item {
margin-bottom: 12px;
}
.section-item ul {
margin-left: 24px;
font-size: 16px;
}
.subsection {
display: flex;
justify-content: space-between;
}
.item-name {
font-weight: 400;
}
.italic {
font-style: italic;
}