Skip to content

Instantly share code, notes, and snippets.

@okdistribute
Forked from etrepum/clicks.css
Last active August 29, 2015 14:18
Show Gist options
  • Save okdistribute/9e405e5ce4983f366468 to your computer and use it in GitHub Desktop.
Save okdistribute/9e405e5ce4983f366468 to your computer and use it in GitHub Desktop.
.clicked {
color: darksalmon;
}
.logo {
position: absolute;
left: 50%;
top: 50%;
width: 128px;
height: 128px;
margin-left: -64px;
margin-top: -64px;
}
/*global $*/
/*jslint sloppy:true, browser: true, white: true*/
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<!doctype html>
<html>
<head>
<title>Clicks!</title>
<link rel="stylesheet" href="clicks.css">
</head>
<body>
<h1 class="page-title">We'll replace this title</h1>
<img src="icon128.svg" class="logo">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="clicks.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment