-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.css
77 lines (60 loc) · 1.04 KB
/
project.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
h2 {
margin-bottom: 40px;
font-size: 2em;
text-align: right;
}
.project-screenshot {
margin: 50px auto;
display: block;
max-width: 80%;
}
.frame {
padding: 8px;
border: solid 1px #CCC;
background-color: white;
margin: 50px auto;
display: block;
max-width: 95%;
}
.project-entry {
display: grid;
grid-template-columns: 1.5fr 3fr;
column-gap: 30px;
margin-bottom: 50px;
}
.project-entry p,
.project-entry ul {
margin-bottom: 20px;
}
dl {
display: grid;
grid-template-columns: 110px auto;
column-gap: 10px;
margin-bottom: 20px !important;
}
dt {
font-weight: bold;
text-align: right;
}
dd {
max-width: 250px;
}
.project-entry * {
margin: 0;
}
@media screen and (max-width: 800px) {
.portfolio-item,
.portfolio-item-alt,
.project-entry {
grid-template-columns: auto;
}
h2 {
text-align: left;
}
.project-entry h2 {
margin-bottom: 10px;
}
.project-screenshot {
max-width: 100%;
}
}