diff options
| author | Neylor Ohmaly | 2014-02-05 10:52:30 -0200 |
|---|---|---|
| committer | Neylor Ohmaly | 2014-02-05 10:52:30 -0200 |
| commit | f9bcf6a35031cb1b7bb2eb0233417f67baab4827 (patch) | |
| tree | 9da3cc9965bf8267d3f435d59ab4d0a7f0822727 /example/index.css | |
| parent | 68f2f1f0119e63890871bce7819e182152566160 (diff) | |
| download | nsPopover-f9bcf6a35031cb1b7bb2eb0233417f67baab4827.tar.bz2 | |
Improved the code documentation.
Diffstat (limited to 'example/index.css')
| -rw-r--r-- | example/index.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/example/index.css b/example/index.css new file mode 100644 index 0000000..3792232 --- /dev/null +++ b/example/index.css @@ -0,0 +1,36 @@ +body {
+ font-family: arial, sans-serif;
+ font-size: 16px;
+}
+
+a {
+ cursor: pointer;
+}
+
+button {
+ box-sizing: border-box;
+ font-size: 12px;
+ padding: 6px 12px;
+ border-radius: 3px;
+ border: solid 1px #0096d6;
+ background: linear-gradient(#0096d6, #0081b8);
+ color: #fff;
+}
+
+button:hover,
+button:focus,
+button:active {
+ background: #0081b8;
+ border: solid 1px #0081b8;
+}
+
+section {
+ position: relative;
+ width: 100%;
+}
+
+article {
+ position: relative;
+ margin: 0 auto;
+ float: left;
+}
\ No newline at end of file |
