-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyles.css
107 lines (88 loc) · 1.59 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
a {
color: #00838F;
text-decoration: none;
padding: 6px;
}
table {
border-collapse: collapse;
border: 1px solid #00838F;
margin-left: auto;
margin-right: auto;
width: 50%;
font-size: 18px;
}
table td {
padding: 20px;
}
table td:last-child {
text-align: right;
}
table tr:first-child {
background-color: gray;
color: #fff;
font-weight: bold;
}
table tr {
border-bottom: 1px dotted #00838F;
}
form table {
width: 25%;
}
form table tr {
vertical-align: top;
}
form table tr:first-child {
background-color: #fff;
color: #000;
font-weight: normal;
}
form table tr:last-child {
text-align: center;
}
.button {
border: 1px solid #000;
border-radius: 10px;
background-color: #92BA56;
border: 1px solid #92BA56;
color: #FFF;
text-decoration: none;
padding: 12px;
min-width: 100px;
}
.button:hover {
background-color: #FFF;
color: #92BA56;
cursor: pointer;
}
input[type=submit] {
border: 1px solid #000;
border-radius: 10px;
background-color: #92BA56;
border: 1px solid #92BA56;
color: #FFF;
text-decoration: none;
padding: 12px;
min-width: 100px;
}
input[type=submit]:hover {
background-color: #FFF;
color: #92BA56;
cursor: pointer;
}
input[type=submit].cancel {
background-color: #C0C0C0;
background-color: #C0C0C0;
border: 1px solid #C0C0C0;
}
input[type=submit].cancel:hover {
background-color: #FFF;
color: #C0C0C0;
cursor: pointer;
}
.float-right {
float: right;
}
.error {
color: red;
font-size: 12px;
}