-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (73 loc) · 1.22 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
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
text-align: right;
padding: 0;
margin: 0;
}
h1 {
margin: 0;
padding-bottom: 5%;
line-height: 95%;
}
h3 {
margin: 0;
}
h4 {
margin: 0;
line-height: 100%;
font-size: 90%;
}
p {
margin: 0;
margin-top: 3px;
padding-left: 5px;
}
a {
text-decoration: none;
color: #1f7f8f;
}
a:hover {
text-decoration: underline;
}
ul {
margin: 0;
padding: 0;
}
li {
list-style: none;
padding-left: 25px;
text-indent: -20px;
}
li:not(:last-child) {
margin-bottom: 15px;
}
.fa {
text-indent: 0;
}
img.photo {
height: 100px;
padding-left: 10px;
}
.container {
display: grid;
width: 70%;
min-width:300px;
grid-template-columns: [title] 1fr [cont] 2fr;
grid-column-gap: 5px;
grid-row-gap: 20px;
align-items: start;
margin: 0 auto;
padding-top: 50px;
}
.item_title {
grid-column: title;
justify-self: end;
align-self: start;
}
.item_cont {
grid-column: cont;
justify-self: start;
align-self: start;
text-align: left;
border-left: 4px solid black;
}