forked from borfast/arrispwgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (66 loc) · 986 Bytes
/
style.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
html {
font-size: 100%;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
body {
margin: 0;
font-size: 16px;
line-height: 1.231;
}
body, button, input, select, textarea {
font-family: sans-serif;
color: #222;
}
#container {
width: 960px;
margin: auto;
}
#header h1 {
width: 100%;
text-align: center;
}
#start-date {
float: left;
width: 45%;
font-size: 18px;
}
#end-date {
float: right;
width: 45%;
font-size: 18px;
}
#password-list {
width: 500px;
margin: auto;
margin-top: 20px;
border-spacing: 0;
}
th:first-child {
border-right: 2px solid grey;
}
th {
width: 50%;
border-bottom: 2px solid gray;
margin: 0;
padding: 8px;
}
td {
border-bottom: 2px solid gray;
padding: 8px;
}
td:first-child {
border-right: 2px solid gray;
}
#go {
margin: 15px;
font-size: 24px;
padding: 10px;
}
#footer {
text-align: center;
margin: 35px;
}