forked from brendena/FitSync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.html
More file actions
174 lines (169 loc) · 3.35 KB
/
Copy pathstyles.html
File metadata and controls
174 lines (169 loc) · 3.35 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<style>
/*my code*/
body{
margin:0px;
}
#togglHelpPageButton{
float:right;
margin-right: 20px;
cursor: pointer;
}
#togglHelpPageButton:hover{
color:red;
}
.hideHelpPage{
margin-left: -150vw;
opacity:0;
}
#helpPage{
width: 95vw;
height: 90vh;
top: 1vh;
left:0;
position:fixed;
z-index: 2;
border: 3px solid;
background:white;
transition: 1s;
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.75);
overflow: auto;
}
.checkBoxContainer{
padding:20px;
}
#helpIcon{
height: 20px;
position: absolute;
right: 20px;
top: 15px;
cursor: pointer;
transition:1s;
}
#helpIcon:hover{
fill: rgb(244, 236, 158);
}
#messageDiv{
padding: 10px;
padding-left: 40px;
}
#reloadIcon{
font-size: 2.4em;
padding-right: 10px;
position: absolute;
left: 50px;
margin-top: -10px
}
.buttonStyle{
padding: 10px;
width:100%;
margin-top:20px;
border:0;
text-align: center;
}
#header{
width: 100%;
background: #fa0239;
padding: 0.5em 0;
text-align: center;
}
#headerText{
margin:0;
font-size:30px;
}
#logo{
position: absolute;
left: 5px;
top: 0px;
height: 60px;
width: 51px;
transition: 1s;
}
/* looks kind of cool */
/*
#logo:hover{
background:white;
left:0px;
}
*/
.actionButton{
background: rgb(255, 225, 93);
transition:.2s;
}
.actionButton:hover{
background:rgba(255, 217, 57, 0.4);
transform: scale(.95,.95);
}
.alert{
background:rgb(255, 141, 71);
}
.error{
border: solid rgb(249, 3, 58);
}
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
position: absolute;
left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
position: relative;
padding-left: 1.95em;
cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
content: '';
position: absolute;
left: 0; top: 0;
width: 1.25em; height: 1.25em;
border: 2px solid #ccc;
background: #fff;
border-radius: 4px;
box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
content: '✔';
position: absolute;
top: .1em; left: .3em;
font-size: 1.3em;
line-height: 0.8;
color: #a19ef3;
transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
opacity: 0;
transform: scale(0);
}
[type="checkbox"]:checked + label:after {
opacity: 1;
transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
box-shadow: none;
border-color: #bbb;
background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
color: #999;
}
[type="checkbox"]:disabled + label {
color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
border: 2px dotted #fa0239;
}
/* hover style just for information
color: #a19ef3;*/
label:hover:before {
border: 2px solid #fa0239!important;
}
</style>