forked from yeyeto2788/MicroPythonScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 865 Bytes
/
Copy pathstyle.css
File metadata and controls
59 lines (51 loc) · 865 Bytes
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
body {
background-color: white;
}
h1 {
font-family: Lucida Console;
color: black;
text-align: center;
}
h3 {
font-family: Lucida Console;
color: black;
text-align: center;
}
table {
table-layout: center;
width: 60%;
font-family: Lucida Console;
color: gray;
}
th {
font-style: bold;
text-align: center;
height: 15px;
border-bottom: 1px solid #ddd;
padding: 5px
}
td {
border-bottom: 1px solid #ddd;
}
form {
text-align: center;
}
input[type=text] {
text-align: center;
width: 60%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
font-family: Lucida Console;
}
input[type=button], input[type=submit], input[type=reset] {
width: 60%;
font-style: bold;
background-color: #ddd;
border: none;
color: black;
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}