-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (66 loc) · 1.22 KB
/
Copy pathstyles.css
File metadata and controls
77 lines (66 loc) · 1.22 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
body{
background-color: lightblue;
font-family: "Comic Sans MS", cursive, sans-serif;
font-size: 17px;
}
h1{
color: rgb(100, 70, 500);
font-size: 60px;
}
.blue{
color: rgb(0, 60, 139);
}
.red{
color: rgb(255, 80, 0);
}
.yellow{
color:yellow;
}
/* The container */
.container {
display: block;
width: 300px;
position: relative;
padding-left: 50px;
margin-bottom: 0px;
cursor: pointer;
font-size: 17px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Hide the browser's default radio button */
.container input {
position: absolute;
opacity: 0;
cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
position: absolute;
top: 0;
left: 10px;
height: 25px;
width: 25px;
background-color: #eee;
border-radius: 50%;
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
background-color: #ccc;
}
/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
background-color: #2196F3;
}
.submit{
background-color: lightgreen;
color: darkgreen;
font-size: 20px;
height: 60px;
width: 180px;
}
.results{
font-size: 40px;
}