diff --git a/static/index.html b/static/index.html index 136be49..a6033ee 100755 --- a/static/index.html +++ b/static/index.html @@ -39,8 +39,8 @@ @@ -50,8 +50,53 @@
- -
Content
+ +
+
+
+ + + + +
+

CV - Graeme Coupar

+

+ Flat 100
+ 10 Sweet Road
+ EH13 7EP +

+

+ Phone: 011456543
+ Email: gbo@amaze.me.uk
+

+
+
+
+ + + + +
+

::Skills::

+
    +
  • Programming Languages: C/C++, C#, Python, Perl, PHP, Java, XHTML, CSS, Visual Basic, SQL, XML, and JavaScript.
  • +
  • OS's: Confident using and administering all recent versions of Windows (2000/XP/Vista,7) and Linux
  • +
  • APIs: Win32, STL, Direct X, OpenGL, .NET, XNA, SQLite, Android, Django, Flask, SQLAlchemy
  • +
+
+

@@ -68,8 +113,6 @@ - - diff --git a/static/less/bootstrap/variables.less b/static/less/bootstrap/variables.less index 94c3a06..86bb2d1 100755 --- a/static/less/bootstrap/variables.less +++ b/static/less/bootstrap/variables.less @@ -123,8 +123,8 @@ // Sprite icons path // ------------------------- -@iconSpritePath: "../img/glyphicons-halflings.png"; -@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png"; +@iconSpritePath: "../../img/glyphicons-halflings.png"; +@iconWhiteSpritePath: "../../img/glyphicons-halflings-white.png"; // Input placeholder text color diff --git a/static/less/style.less b/static/less/style.less index 893e7c1..144aef5 100755 --- a/static/less/style.less +++ b/static/less/style.less @@ -12,9 +12,40 @@ body { Author: ========================================================================== */ +.rounded-corners (@radius: 5px) { + border-radius: @radius; + -webkit-border-radius: @radius; + -moz-border-radius: @radius; +} +.section { + border: 1px solid white; + .rounded-corners; + padding: 2px; + margin-bottom: 3px; + + -webkit-transition: border-color 1s; +} +.section:hover { + border: 1px solid black; + .rounded-corners; + -webkit-transition: border-color 1s; +} +.section .tools { + float:right; + opacity:0; + filter:alpha(opacity=0); + -webkit-transition: opacity 1s; +} + +.section:hover .tools { + opacity:0.8; + filter:alpha(opacity=80); + + -webkit-transition: opacity 1s; +}