-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.css
138 lines (120 loc) · 2.72 KB
/
index.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
130
131
132
133
134
135
136
137
138
body {
background: gray;
margin: 0px;
font-family: Arial,sans-serif;
}
.container {
text-align: center;
padding: 30px;
margin: auto;
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
user-select: none;
background-image: linear-gradient(steelblue, gray);
}
@media only screen and (max-width: 1024px) {
.container {
flex-direction: column-reverse;
justify-content: flex-start;
align-items: center;
}
}
.container .eq {
font-style: italic;
}
.huge {
font-size: 100pt;
}
.big {
font-size: 1.5em;
padding: 0px;
margin: 0px;
}
.bigger {
font-size: 2em;
padding: 0px;
margin: 0px;
}
.buttons {
margin-top: 10px;
}
.btn {
box-shadow: 0px 1px 0px 0px #141412;
background:linear-gradient(to bottom, #eae0c2 5%, #ccc2a6 100%);
background-color:#eae0c2;
border-radius:15px;
border:2px solid #8a7648;
display:inline-block;
cursor:pointer;
color:#505739;
font-family: Arial, sans-serif;
font-size:14px;
font-weight:bold;
padding:5px 10px;
text-decoration:none;
text-shadow:0px 1px 0px #ffffff;
}
.btn:hover {
background:linear-gradient(to bottom, #ccc2a6 5%, #eae0c2 100%);
}
.btn:active {
position:relative;
top:1px;
}
.description {
text-align: left;
}
.boxes {
margin: 5px;
}
.boxes .radio {
overflow: hidden;
white-space: nowrap;
}
.boxes .lame {
margin: 20px;
color: darkred;
}
.boxes input {
margin: 20px auto;
background: #fcfff4;
background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
border-radius: 10px;
box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
color: green;
}
.boxes label {
margin-right: 10px;
}
ul {
text-align: left;
}
input[type="number"] {
font-size: 1rem;
position: relative;
margin: 0 0 1rem;
border: 1px solid #BBB;
color: black;
padding: .3rem .7rem;
max-width: 3rem;
}
/* Spin Buttons modified */
input[type="number"].stepper::-webkit-outer-spin-button,
input[type="number"].stepper::-webkit-inner-spin-button {
-webkit-appearance: none;
background: #FFF url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAKUlEQVQYlWNgwAT/sYhhKPiPT+F/LJgEsHv37v+EMGkmkuImoh2NoQAANlcun/q4OoYAAAAASUVORK5CYII=) no-repeat center center;
width: 1em;
border-left: 1px solid #BBB;
opacity: .5; /* shows Spin Buttons per default (Chrome >= 39) */
position: absolute;
top: 0;
right: 0;
bottom: 0;
}
input[type="number"].stepper::-webkit-inner-spin-button:hover,
input[type="number"].stepper::-webkit-inner-spin-button:active{
box-shadow: 0 0 2px #0CF;
opacity: .8;
}