forked from robmcguinness/robmcguinness
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.css
More file actions
55 lines (54 loc) · 858 Bytes
/
grid.css
File metadata and controls
55 lines (54 loc) · 858 Bytes
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
.grid-full{
grid-column: 1 / 5;
}
.grid-half1{
grid-column: 1 / 3;
}
.grid-half2{
grid-column: 3 / 5;
}
.justify-self-center{
justify-self: center;
}
a{
display:inline;
color: #007bff;
text-decoration: none;
}
.pb-20{
padding-bottom: 16px;
}
.justify-self-start{
justify-self: start;
}
.justify-self-end{
justify-self: end;
}
.ds{
padding-top: 10px;
font-family: 'Roboto', sans-serif;
font-size: 2rem;
color: #666;
font-weight: 300;
text-align: center;
margin: 0;
}
.title {
font-size: 4rem;
font-weight: 700;
text-align: center;
margin: 14px;
}
.gridiron{
display: grid;
justify-content: space-around;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 20vh auto;
margin: 0 auto;
}
.nav-link:hover{color:#0056b3;}
.nav-link {
font-size: 1.5rem;
/* display: block; */
padding: .5rem 1rem;
}