-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (56 loc) · 1.25 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
body,html {
/*background:#ddf;*/
background: #3b4b54;
padding: 0;
margin: 0 auto;
max-width: 1200px;
text-align: left;
/*overflow:hidden;*/
height: 100%;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light",
"Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
font-size: 1em;
line-height: 1.225em;
color: white;
}
*, *:before, *:after {box-sizing: border-box !important;}
.notes {
-moz-column-width: 20em;
-webkit-column-width: 20em;
-moz-column-gap: 1em;
-webkit-column-gap:1em;
}
.item {
display: inline-block;
padding: .25rem;
width: 100%;
}
.well {
position:relative;
display: block;
}
button {
position:absolute;
right:0;
margin-top:3px;
border-radius: 3px;
background-image: -webkit-gradient(linear,left top,left bottom,from(#00aed1),to(#0099b7));
background-image: -webkit-linear-gradient(#00aed1,#0099b7);
background-image: -moz-linear-gradient(#00aed1,#0099b7);
background-image: -o-linear-gradient(#00aed1,#0099b7);
background-image: linear-gradient(#00aed1,#0099b7);
background-color: #3b4b54;
color: #fff;
text-align: center;
text-decoration: none;
padding: .3em 1em;
font-size: .625em;
}
button:hover {
cursor:pointer;
}
button:disabled {
color: graytext;
cursor: default;
}