forked from nikitahl/svg-circle-progress-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 1.79 KB
/
style.css
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
body {
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #333;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
label {
cursor: pointer;
}
main, header {
display: flex;
justify-content: space-between;
width: 800px;
max-width: 90%;
margin: 0 auto;
flex-wrap: wrap;
}
main {
margin-bottom: 25px;
}
h1 {
margin: 30px 0 40px;
font-size: 2.5em;
font-weight: 900;
}
.column {
width: 48%;
}
@media screen and (max-width: 670px) {
.column {
width: 100%;
}
}
.field-group {
display: flex;
align-items: center;
margin: 0 0 20px;
}
.field-group--optional {
display: block;
}
.field-group label {
display: inline-block;
margin: 0 10px 0 0;
}
#value-toggle:not(:checked) ~ .field-group {
display: none;
}
.output-code {
margin: 15px 0;
min-height: 100px;
background: #f7f7f7;
color: #222;
overflow: auto;
border-radius: 3px;
}
.field-group input[type="number"] {
border: 1px solid #888;
border-radius: 3px;
padding: 3px 7px;
}
.field-group input[type="color"] {
-webkit-appearance: none;
border: none;
padding: 0;
height: 30px;
width: 28px;
background: transparent;
outline: none;
cursor: pointer;
}
.field-group input[type="radio"] {
margin: 0;
}
.output {
display: flex;
justify-content: center;
align-items: center;
margin: 0 0 40px;
}
.footer-text {
margin: 0;
padding: 30px 0;
text-align: center;
border-top: 1px solid #ccc;
font-size: .8em;
}
.copy-btn {
width: 156px;
height: 40px;
border: none;
border-radius: 3px;
margin: 0;
padding: 12px 26px;
color: #fff;
background-color: #377cf0;
cursor: pointer;
}
.copy-btn:hover {
background-color: #1951b0;
}