forked from bennadel/JavaScript-Demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.css
56 lines (50 loc) · 1022 Bytes
/
demo.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
a[ ng-click ] {
color: red ;
cursor: pointer ;
text-decoration: underline ;
}
form {
border: 1px solid #CCCCCC ;
border-radius: 4px 4px 4px 4px ;
float: left ;
margin: 0px 20px 20px 0px ;
min-height: 190px ;
padding: 5px 20px 5px 20px ;
width: 265px ;
}
div.form-actions {
border: 1px solid #CCCCCC ;
border-radius: 4px 4px 4px 4px ;
float: left ;
font-size: 56px ;
height: 200px ;
line-height: 200px ;
text-align: center ;
text-decoration: none ;
width: 265px ;
}
div.form-actions a.add {
border-bottom: 1px solid #CCCCCC ;
border-radius: 4px 4px 0px 0px ;
display: block ;
font-size: 56px ;
height: 99px ;
line-height: 100px ;
text-align: center ;
text-decoration: none ;
width: 265px ;
}
div.form-actions a.remove {
border-radius: 0px 0px 4px 4px ;
display: block ;
font-size: 56px ;
height: 100px ;
line-height: 100px ;
text-align: center ;
text-decoration: none ;
width: 265px ;
}
div.form-actions a.add:hover,
div.form-actions a.remove:hover {
background-color: #FAFAFA ;
}