-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
109 lines (109 loc) · 2.19 KB
/
style.css
File metadata and controls
109 lines (109 loc) · 2.19 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
.myButton {
box-shadow: inset 0px 0px 14px -3px #f2fadc;
background-color: #dbe6c4;
border-radius: 6px;
border: 1px solid #b2b8ad;
display: inline-block;
cursor: pointer;
color: #757d6f;
font-family: Arial;
font-size: 15px;
font-weight: bold;
padding: 6px 24px;
text-decoration: none;
text-shadow: 0px 1px 0px #ced9bf;
}
.myButton:hover {
background-color: #9ba892;
}
.myButton:active {
position: relative;
top: 1px;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
position: absolute;
left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
position: relative;
padding-left: 28px;
cursor: pointer;
line-height: 20px;
display: inline-block;
color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 18px;
height: 18px;
border: 1px solid #ddd;
border-radius: 100%;
background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
content: "";
width: 12px;
height: 12px;
background: #9ba892;
position: absolute;
top: 4px;
left: 4px;
border-radius: 100%;
-webkit-transition: all 0.2s ease;
transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
[type="radio"]:checked + label:after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
body {
margin: 0px;
}
#wrapper {
display: flex;
align-items: center;
justify-content: center;
font-family: Arial;
color: #757d6f;
background-image: radial-gradient(
circle 613px at 24.5% 36%,
rgba(165, 233, 138, 1) 0%,
#bbb 90%
);
height: 100vh;
overflow: auto;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 60vw;
margin-left: auto;
margin-right: auto;
}
#buttons {
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
}
#header {
font-weight: normal;
}
#output {
visibility: hidden;
}