-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhexC.css
More file actions
114 lines (105 loc) · 1.86 KB
/
hexC.css
File metadata and controls
114 lines (105 loc) · 1.86 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
110
111
112
113
114
html,body{
margin: 0;
padding: 0;
width:100%;
height:100%;
overflow:hidden;
background: #82b64a;
display: flex;
}
.author {
position: absolute;
right: 0;
top: 0;
background: #333;
color: #fff;
transform: translateX(2em) translateY(-0.6em) rotate(45deg);
height: 3em;
width: 6em;
line-height: 4.5em;
text-align: center;
font-size: 18px;
text-decoration: none;
z-index: 1;
}
.cShow{
width: 100%;
height: 100%;
cursor: pointer;
}
.cShow .hexName,.cShow .chex{
mix-blend-mode: difference;
color: #888;
background: transparent;
font-size: 36px;
}
.cShow .chex{
box-sizing: border-box;
margin-top: 20px;
padding-left: 6%;
width: 100%;
border: none;
font-size: 32px;
font-style: italic;
cursor: pointer;
}
.cShow .hexName{
padding: 36px 6%;
writing-mode: vertical-lr;
display: block;
max-width: 100%;
width: fit-content;
}
#cIn, .cIn_input {
box-sizing: border-box;
width: 400px;
height: 60px;
}
#cIn{
display: inline-block;
position: absolute;
left: 50%;
margin-left: -200px;
top: 42%;
z-index: 999;
}
.cIn_input {
border-radius: 30px;
border: none;
font-size: 30px;
text-align: center;
}
.cIn_apply {
position: relative;
top: -50px;
left: 346px;
font-size: 32px;
color: white;
background: #333;
display: inline-block;
height: 40px;
line-height: 35px;
width: 40px;
text-align: center;
border-radius: 30px;
cursor: pointer;
}
#ctip{
position: fixed;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
width: fit-content;
max-width: max-content;
bottom: 20px;
display: none;
overflow: hidden;
border: none;
border-radius: 12px;
background: #fff;
padding: 12px 48px;
font-size: 28px;
color: #82b64a;
z-index: 999;
}