-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
114 lines (103 loc) · 1.7 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
@charset "UTF-8";
* {
box-sizing: border-box;
}
html {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.content {
background-color: #f9fbfd;
color: #d22d27;
padding: 48px;
border: 2px solid #d22d27;
text-align: center;
max-width: 720px;
}
.result-container {
display: flex;
justify-content: space-between;
align-items: center;
}
#result {
width: 80%;
height: auto;
font-size: 2rem;
padding: 8px;
resize: vertical;
min-height: 55px;
}
.setting {
padding: 5px;
text-align: left;
}
.setting.checkbox {
display: flex;
align-items: center;
}
.setting.checkbox label {
margin-left: 4px;
}
#length {
text-align: center;
}
input[type=number] {
width: 56px;
height: 24px;
}
input[type=checkbox] {
width: 24px;
height: 24px;
}
.icon-button {
background-size: 2rem;
width: 55px;
height: 55px;
display: inline-block;
border: 0;
background-color: transparent;
background-position: 50%;
background-repeat: no-repeat;
}
.icon-button.copy-button {
background-image: url(./image/copy.svg);
}
.icon-button.new-button {
background-image: url(./image/new.svg);
}
#copied {
opacity: 0;
transition: opacity 0.1s;
}
#copied.show {
opacity: 1;
transition: opacity 0.1s;
}
.hover-button {
transition: all 0.5s;
cursor: pointer;
color: #d22d27;
}
.hover-button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.hover-button span:after {
content: "»";
position: absolute;
opacity: 0;
top: 0;
right: -10px;
transition: 0.5s;
}
.hover-button:hover span {
padding-right: 16px;
}
.hover-button:hover span:after {
opacity: 1;
right: 0;
}/*# sourceMappingURL=style.css.map */