-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
129 lines (108 loc) · 1.95 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css?family=Poppins|Inconsolata|Droid+Sans');
*{
font-family: "Poppins", Helvetica, sans-serif;
}
#editbutton
{
background-color: gray;
padding: 4px 32px;
}
#loginheader
{
text-align: center;
font-weight:bold;
}
#LoginBox
{
text-align: center;
padding: 12px 20px;
}
#usernamebox, #passwordbox
{
width: 15%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border-radius: 4px;
text-align: center;
font-size: large;
}
#deliveredbutton:hover
{
background-color: lightgreen;
border: none;
}
#undeliveredbutton:hover
{
background-color: lightcoral;
border: none;
}
input[type=submit]
{
background-color: #003566;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
border-radius: 8px;
transition-duration: 0.4s
}
input[type=submit]:hover
{
background-color: lightblue;
border: none;
}
table
{
border-collapse: collapse;
border-spacing: 0;
width: 80%;
border: 1px solid #ddd;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
}
th, td
{
text-align: center;
padding: 16px;
border-right: solid 1px #f00;
border-left: solid 1px #f00;
border-color: darkgray;
}
tr:nth-child(even)
{
background-color: #f2f2f2;
}
.column
{
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after
{
content: "";
display: table;
clear: both;
}
#nameheader
{
color: black;
text-align: center;
font-size: 50px;
}
::-webkit-input-placeholder {
text-align: center;
}
:-moz-placeholder { /* Firefox 18- */
text-align: center;
}
::-moz-placeholder { /* Firefox 19+ */
text-align: center;
}
:-ms-input-placeholder {
text-align: center;
}