-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.css
More file actions
106 lines (91 loc) · 1.66 KB
/
Copy pathform.css
File metadata and controls
106 lines (91 loc) · 1.66 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
98
99
100
101
102
103
104
105
106
body {
font-family: sans-serif;
color: #999;
}
.row {
display: flex;
}
.col {
flex: 1;
padding: 1em;
}
/* FAQ */
.faq {
max-width: 45%;
background-color: #f6f6f6;
box-shadow: 6px 6px 3px #EEE;
border-radius: 5px;
}
/* CALC */
form {
font-weight: bold;
margin-left: auto;
margin-right: 0;
background-color: #f6f6f6;
box-shadow: 6px 6px 3px #EEE;
border-radius: 5px;
padding: 1em 2em;
max-width: 45%;
}
#total {
color: #F36510;
}
#wins {
background-color: white;
width: 10%;
text-align: center;
padding: 1em;
border-radius: 5px;
box-shadow: 6px 6px 3px #EEE;
}
#wins_amount {
-webkit-appearance: none;
appearance: none;
height: 7px;
border-radius: 5px;
background: #fff;
outline: none;
opacity: 0.7;
box-shadow: 2px 2px 2px #EEE
}
#wins_amount::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #999;
cursor: pointer;
}
#wins_amount::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #999;
cursor: pointer;
}
.check {
height: 12px;
width: 12px;
border: thin solid #F36510;
border-radius: 10px;
background-color: #EEE;
-webkit-appearance: none;
appearance: none;
}
.check:checked {
background-color: #F36510;
}
#coupon {
text-align: center;
border-radius: 5px;
border-style: solid;
border-color: #ddd;
box-shadow: 2px 2px 2px #EEE;
height: 25px;
width: 70%;
}
.coupon_paragraph {
text-align: center;
color: #F36510;
}