-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphonestyle.css
105 lines (103 loc) · 1.62 KB
/
phonestyle.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
margin:0px;
}
.container {
position:relative;
width:960px;
margin:auto;
}
.title {
padding:10px;
border-bottom:2px solid;
background:rgb(250,250,250);
}
.title h1 {
margin:0px;
font-family:sans-serif;
font-weight:normal;
text-shadow:0px 0px 1px rgba(0,0,0,0.4);
background-color: black;
color: white;
padding: 12px;
}
.quickadd {
padding:10px;
border-bottom:1px solid;
}
#QuickAdd {
padding:8px;
background:rgb(250,250,250);
border:1px dashed;
text-shadow:0px 0px 1px;
}
.quickaddForm {
height:200px;
padding:10px;
background:rgb(240,240,240);
overflow:hidden;
display:none;
}
.quickaddForm label {
position:relative;
display:block;
width:300px;
height:10px;
float:left;
font-family:sans-serif;
font-size:12px;
padding:10px;
font-weight:bold;
}
.quickaddForm input {
border:1px dashed;
width:50%;
padding:10px;
font-weight:bold;
border-radius:5px;
box-shadow:inset 0px 0px 10px rgba(0,0,0,0.2);
}
#Add,#Cancel {
padding:10px;
margin:20px;
position:relative;
left:300px;
border:1px dashed;
border-radius:5px;
font-weight:bold;
}
.entry {
background:rgb(230,230,230);
width:960px;
height:40px;
border-bottom:1px solid;
}
.entry .name {
width:210px;
float:left;
padding:11px;
}
.entry .phone {
width:180px;
float:left;
padding:11px;
}
.entry .del {
width:30px;
float:left;
padding:9px;
}
.entry p {
margin:0px;
font-family:sans-serif;
font-size:15px;
text-shadow:0px 0px 1px rgba(0,0,0,0.4);
}
.entry .del a {
font-family:sans-serif;
color:#FFF;
font-size:14px;
padding:5px;
background:rgb(255,100,100);
border-radius:8px;
text-decoration:none;
}