forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.css
78 lines (65 loc) · 1.32 KB
/
home.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
@charset "UTF-8";
@import url("style.css");
/*img {*/
/* max-width: 100%;*/
/* justify-self: center;*/
/* align-self: stretch;*/
/*}*/
/*.container {*/
/* max-width: 80%;*/
/* margin-top: 15%;*/
/* display: grid;*/
/* grid-template-columns: 65% auto;*/
/* grid-template-areas: "main side";*/
/*}*/
nav a {
margin-left: 20px;
color: #ffffff;
text-align: right;
font-weight: 300;
letter-spacing: 1px;
}
h1 a {
/*margin-left: 20px;*/
color: #ffffff;
text-align: left;
/*font-weight: 300;*/
/*letter-spacing: 1px;*/
}
.main-side {
grid-area: side;
}
.home-header {
cursor: default;
font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
color: #dbdbdb;
margin-bottom: 0.3em;
font-size: 3em;
font-weight: 600;
transition: color 1.5s ease-in-out;
}
.home-header:hover {
color: #000;
}
.main {
grid-area: main;
}
.section-header {
cursor: default;
width: 70%;
font-size: 1.25em;
color: #c749ef;
font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
padding-bottom: 0.25em;
/*border-bottom: 1px solid #777;*/
}
div {
color: #dedddd;
}
ul {
display: grid;
margin-top: 0.4em;
padding-left: 0;
list-style-type: none;
grid-template-columns: repeat(auto-fit,minmax(132px, 1fr));
}