forked from yairEO/tagify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodepen.css
51 lines (43 loc) · 815 Bytes
/
codepen.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
body{
height: 100vh;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
padding: 12em 0;
box-sizing: border-box;
}
.pen-intro{
}
.repoLink{
position: absolute;
top: 0;
right: 0;
width: 18%;
max-width: 360px;
min-width: 160px;
}
label[for='checkbox-tagify-show-input']{
position: absolute;
top: .85em;
left: 2.5em;
}
#checkbox-tagify-show-input{
position: absolute;
top: 1em;
left: 1em;
transform: scale(1.4);
}
#checkbox-tagify-show-input:checked ~ input,
#checkbox-tagify-show-input:checked ~ textarea{
display: block !important;
position: static !important;
transform: none !important;
width: 100%;
max-width: 700px;
margin-top: 1em;
padding: .5em;
}
#checkbox-tagify-show-input:checked ~ textarea{
min-height: 11ch;
}