-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (97 loc) · 1.4 KB
/
style.css
File metadata and controls
97 lines (97 loc) · 1.4 KB
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
body {
font-family: Helvetica Neue, sans-serif;
background: powderblue;
}
h1, h2, h3 {
font-weight: 300;
}
#data {
width: 50%;
height: 15%;
}
button, select {
padding: 5px;
margin: 4px;
}
code {
background: lightgrey;
padding: 3px;
border-radius: 3px;
font-size: .7em;
}
input.limited {
width: 40px;
}
details {
max-width: 50%;
}
details p {
padding: 5px;
}
button, select {
cursor: pointer;
background: rgb(117, 210, 117);
border: none;
border-radius: 5px;
}
button:disabled, select:disabled {
background: lightgrey;
cursor: default;
}
button:hover:not(:disabled) {
background: rgb(106, 195, 106);
}
#widgetdisplay {
margin: 10px;
padding-left: 5px;
}
textarea, input {
background: rgb(162, 194, 199);
border: 1px solid grey;
outline: none;
border-radius: 5px;
font-family: inherit;
padding: 5px;
}
textarea:focus, input:focus {
border: 1px solid black;
}
td {
padding-right: 10px;
}
a {
text-decoration: none;
color: steelblue;
}
a:hover {
text-decoration: underline;
}
a.footer {
position: fixed;
bottom: 0%;
right: 0%;
background: skyblue;
padding: 10px;
border-radius: 5px;
}
table {
background: black;
border-radius: 3px;
}
td {
background: powderblue;
padding: 5px;
width: 40px;
}
td input {
width: 70%;
margin: auto;
font-size: .7em;
}
.tablebtn {
width: 30px;
margin-left: -1px;
}
#distributions div input {
width: 40px;
}