-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaskint.css
executable file
·68 lines (67 loc) · 1.2 KB
/
taskint.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
64
65
66
67
68
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700|Roboto:400,700,400italic,700italic);
html, body{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Montserrat', sans-serif;
background-color: #f1f1f1;
}
input[type=text]{
width: 100%;
margin: 0;
padding: .25em;
font-size: 3em;
font-family: 'Montserrat', sans-serif;
font-weight: bold;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
ul{
margin: 0;
padding: 0;
list-style: none;
}
li{
position: relative;
padding: .30em .5em .30em .5em;
margin: .20em;
background-color: #fff;
border-radius: 2px;
cursor: default;
font-size: 2em;
color: #666;
text-shadow: 0px 1px 0px #e5e5ee;
border: 1px solid #e8e8e8;
}
li .actions{
position: absolute;
top: 0;
right: 0;
}
li .actions span{
font-size: 1.4em;
margin: 0;
color: #966;
text-shadow: 0px 1px 0px #e5e5ee;
cursor: pointer;
}
li .actions span:hover{
color: #f99;
}
.subtext{
color: #999;
font-size: .60em;
}
.placeholder{
height: 39px;
margin: .20em;
background-color: #e9e9e9;
border-radius: 2px;
cursor: default;
font-size: 2em;
color: #666;
text-shadow: 0px 1px 0px #e5e5ee;
border: 1px solid #e8e8e8;
}