-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaster.css
More file actions
102 lines (99 loc) · 1.59 KB
/
Copy pathmaster.css
File metadata and controls
102 lines (99 loc) · 1.59 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
body{
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
}
/* Styling Main Section */
h3{
font-size: 30px;
color: #1affb2;
text-transform: uppercase;
text-decoration: underline;
padding-bottom: 50px;
}
#main_section{
margin: 100px 0px;
}
.checkbox-group{
padding: 20px;
border: 2px solid #00b377;
border-radius: 5px;
margin-bottom: 30px;
}
#submit{
margin-top: 30px;
}
#results{
display: block;
margin: 0 auto;
max-width: 400px;
color: #000000;
font-size: 16px;
font-weight: 500;
line-height: 30px;
text-align: center;
border-radius: 5px;
background-color: #1affb2;
opacity: 0.9;
}
/* Animating Checkboxes */
label{
cursor: pointer;
color: #666;
font-size: 16px;
}
input[type="checkbox"]{
display: none;
}
input[type="checkbox"] + .label-text:before{
content: "\f096";
font-family: "FontAwesome";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
width: 1em;
display: inline-block;
margin-right: 5px;
}
input[type="checkbox"]:checked + .label-text:before{
content: "\f14a";
font-family: "FontAwesome";
color: #1affb2;
animation: click 150ms ease-in;
}
/* Animation */
@keyframes click{
from{
transform: scale(0);
}
to{
transform: scale(1);
}
}
/* Media Queries */
@media screen
and (min-width: 320px)
and (max-width: 480px){
h3{
font-size: 26px;
padding-bottom: 10px;
}
#main_section{
margin: 20px 0px;
}
}
@media screen
and (min-width: 481px)
and (max-width: 767px){
h3{
font-size: 26px;
padding-bottom: 10px;
}
#main_section{
margin: 20px 0px;
}
}