forked from benkeen/responsive-design-bookmarklet-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (90 loc) · 1.47 KB
/
styles.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
margin: 30px;
}
body, div, p {
font-family: verdana;
font-size: 8pt;
line-height: 17pt;
}
#nav_column_content, #hide_nav_link { display: block; }
#show_nav_link { display: none; }
.clear { clear: left; }
#bm_generate ul {
list-style: none;
margin: 0px;
padding: 0px;
}
#bm_generate .heading {
font-weight: bold;
}
#bm_generate ul li {
float: left;
}
#bm_generate .col0 {
width: 20px;
display: block;
}
#bm_generate .row {
background-color: #f2f2f2;
height: 22px;
border-bottom:1px solid white;
width: 410px;
}
#bm_generate .sortable .col0 {
background: transparent url(sort.png) center center no-repeat;
cursor: move;
}
#bm_generate .col1 {
width: 80px;
}
#bm_generate .col1 input {
width: 65px;
}
#bm_generate .col2 {
width: 80px;
}
#bm_generate .col2 input {
width: 65px;
}
#bm_generate .col3 {
width: 200px;
}
#bm_generate .col3 input {
width: 195px;
}
#bm_generate .del {
width: 20px;
padding: 0px 4px;
background-color: #990000;
color: white;
text-align: center;
border-radius: 2px;
cursor: pointer;
}
#bm_generate .del:hover {
background-color: #333333;
}
#add_row_link {
color: #0033cc;
text-decoration: none;
cursor: pointer;
}
#add_row_link:hover {
text-decoration: underline;
}
#generate_btn {
background-color: green;
padding: 2px 8px;
border-radius: 3px;
color: white;
cursor: pointer;
}
#generate_btn:hover {
background-color: #0055cc;
}
#bookmarklet_link {
padding: 20px;
background-color: #f2f2f2;
border: 1px solid #dddddd;
width: 160px;
}