This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package util; | |
public class HtmlStrings { | |
private HtmlStrings() { | |
} | |
public static class ELEMENTS { | |
public static final String A = "a"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Responsive Lightbox | |
*/ | |
body { | |
font-family: Arial, helvetica, sans-serif; | |
background: #fff; | |
min-height: 100%; | |
} | |
.lightbox { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html><head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title> - jsFiddle demo by CyberSliver</title> | |
<script type="text/javascript" src="//code.jquery.com/jquery-2.0.2.js"></script> | |
<link rel="stylesheet" type="text/css" href="/css/result-light.css"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Försäkringskassan - Style 2.0 | |
*/ | |
body { | |
background: #FFFFFF; | |
font-family: "Trebuchet MS"; | |
} | |
button { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* E-mail address obfuscation | |
*/ | |
.domain::before { | |
width: 1em; | |
content: '@'; | |
} |