Skip to content

Commit

Permalink
Merge branch 'release/1.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mcwarman committed Sep 20, 2017
2 parents 1b52069 + 6048c90 commit f95318e
Show file tree
Hide file tree
Showing 6 changed files with 71 additions and 8 deletions.
5 changes: 2 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
The MIT License (MIT)
MIT License

Original work Copyright (c) 2016 DashingCode
Modified work Copyright (c) 2017 Matthew Warman
Copyright (c) 2017 Matthew Warman

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# mcwarman.github.io [![Tag](https://img.shields.io/github/tag/mcwarman/mcwarman.github.io.svg)](https://github.com/mcwarman/mcwarman.github.io/tags) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## License

This site includes third party open source components, which has its own license:
* [DashingCode/front-cover](https://github.com/dashingcode/front-cover) - [DashingCode-LICENSE.txt](etc/DashingCode-LICENSE.txt).

Background images:
* [Old workshop!](https://www.flickr.com/photos/adriano-1973/12663229044/in/photolist-ki1mPf-ar7fme-ar78tZ-ar9M37-zRcVpa-7Uizd8-ar7kmF-ar79ug-ozpsiq-c12bp7-edXdKh-bzmLiA-fm4NXA-oq2qM8-pXiroQ-rbuoFw-8Pzhk7-8PznyJ-7Ya7E6-o5yUju-8fStup-o5p92g-juLGNi-nyqHw2-oMC3cJ-py7hEo-FhFVo3-m2xG6B-m2x5Pe-bminP9-p7a6Hn-a7SwxG-p1prat-og5WXJ-pCwyEr-qiBEjc-m2vLek-p1njvW-ogUc6x-8EjaWH-prc1vz-e7nkL8-jRWJE6-bgEUwT-oo1EPS-9voDrj-aXYsCc-maAKrn-b5aing-r9PTes) by [Adriano BIDOLI](https://www.flickr.com/photos/adriano-1973/) is licensed under [CC BY-NC-CD 2.0](https://creativecommons.org/licenses/by-nc-nd/2.0/)
40 changes: 36 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,41 @@
h1 {
html {
background: url(../images/background.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
font-family: "Open Sans", sans-serif;
color: #FFF;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 0;
}

h1 {
font-size: 48px;
font-weight: normal;
margin: 10px;
}
#content {
position: absolute;
text-align: center;
background-color: rgba(0, 0, 0, 0.4);
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: 0;
}
#avatar img {
height: 180px;
border-radius: 100%;
border: 3px solid white;
margin-top:10px;
}
#navigation ul{
text-align: center;
Expand All @@ -14,21 +46,21 @@ h1 {
list-style: none;
display: inline-block;
border-radius: 100%;
border: 2px solid #000;
border: 1px solid #FFF;
height:50px;
width: 50px;
margin: 8px;
}
#navigation ul li:hover {
color: #000;
color: #FFF;
text-decoration: none;
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
background-color: rgba(0, 0, 0, 0.25);
}
#navigation ul li a {
color: #000;
color: #FFF;
}
#navigation ul li a i {
padding: 9px;
Expand Down
21 changes: 21 additions & 0 deletions etc/DashingCode-LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 DashingCode

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Binary file added images/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
<title>Matthew Warman - warman.io</title>
</head>
<body>
<div>
<div id="content">
<div id="avatar"><img src="https://avatars2.githubusercontent.com/u/7236500"/></div>
<h1>Matthew Warman</h1>
<h3>Technical Swiss Army Knife</h3>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
Expand Down

0 comments on commit f95318e

Please sign in to comment.