aboutsummaryrefslogtreecommitdiff
path: root/assets/css/main.css
blob: 5d8594d6c0bfd2c428a8d0916e795be5340fbbea (plain)
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
@charset "utf-8";

/* source-code-pro-regular - latin */
@font-face {
  font-family: 'Source Code Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-code-pro-v14-latin-regular.eot'); /* IE9 Compact Modes */
  src: local(''),
    url('../fonts/source-code-pro-v14-latin-regular.eot?#iefix')
      format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/source-code-pro-v14-latin-regular.woff2')
      format('woff2'),
    /* Super Modern Browsers */
      url('../fonts/source-code-pro-v14-latin-regular.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/source-code-pro-v14-latin-regular.ttf')
      format('truetype'),
    /* Safari, Android, iOS */
      url('../fonts/source-code-pro-v14-latin-regular.svg#SourceCodePro')
      format('svg'); /* Legacy iOS */
}

/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-pro-v14-latin-regular.eot'); /* IE9 Compact Modes */
  src: local(''),
    url('../fonts/source-sans-pro-v14-latin-regular.eot?#iefix')
      format('embedded-opentype'),
    /* IE6-IE8 */ url('../fonts/source-sans-pro-v14-latin-regular.woff2')
      format('woff2'),
    /* Super Modern Browsers */
      url('../fonts/source-sans-pro-v14-latin-regular.woff') format('woff'),
    /* Modern Browsers */ url('../fonts/source-sans-pro-v14-latin-regular.ttf')
      format('truetype'),
    /* Safari, Android, iOS */
      url('../fonts/source-sans-pro-v14-latin-regular.svg#SourceSansPro')
      format('svg'); /* Legacy iOS */
}

ul#nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

body#home header ul#nav {
  width: 436px;
}

body#about header ul#nav {
  width: 403.2px;
}
ul#nav li {
	font-size: 12px;
  margin: 1.5em;
  width: 20%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
  text-align: center; /* If you want the text to be centered */
}

body#home {
  max-width: 570px;
}

body#about {
  max-width: 570px;
}

body {
  font-family: 'Source Sans Pro';
  font-size: 14px;
  margin: 0 auto;
}

section#intro h1:after {
  content: ' // Dylan Bolger';
  color: #d3d3d3;
}

section#webthings h2:after {
	content: ' // <3';
	color: #d3d3d3;
}

section#projects h1:after {
  content: ' // :)';
  color: #d3d3d3;
}

div.project.js h2:after {
  font-style: normal;
  content: ' // JavaScript';
  color: #d3d3d3;
}

div.project.css h2:after {
  font-style: normal;
  content: ' // CSS';
  color: #d3d3d3;
}

div.project.swift h2:after {
  font-style: normal;
  content: ' // Swift';
  color: #d3d3d3;
}

div.project.objc h2:after {
  font-style: normal;
  content: ' // Objective-C';
  color: #d3d3d3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Code Pro';
}

a {
  color: blue;
}

a:hover {
  color: black;
}

a:active {
  color: gray;
}

section {
  padding-bottom: 50px;
  line-height: 20px;
}

div.project {
  margin-bottom: 2em;
}

div.project h2 {
  font-style: italic;
}

section#projects p#description {
  margin-bottom: 1.5em;
}

header {
  padding-left: 0px;
  margin: auto;
}
/*make uls clean*/
section ul {
  padding-left: 0px;
  list-style-type: none;
  line-height: 20px;
}

div.project h1 {
  margin-bottom: 200px;
}

section h1 {
  font-weight: bold;
  font-size: 28px;
}