forked from mtierltd/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpiklor.css
More file actions
67 lines (57 loc) · 959 Bytes
/
piklor.css
File metadata and controls
67 lines (57 loc) · 959 Bytes
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
/*
header, footer {
color: white;
background: #303F9F;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.51);
}
h1.title {
font-size: 4em;
font-weight: bold;
}
pre {
background: #212121;
color: white;
}
header p {
font-size: 1.4em;
}
footer {
padding: 50px 0;
text-align: center;
font-size: 1.1em;
margin-top: 3em;
}
footer a {
color: white;
}
footer a:hover {
color: white;
}
*/
/* picker */
.color-picker {
background: rgba(255, 255, 255, 0.75);
padding: 10px;
border: 1px solid rgba(203, 203, 203, 0.6);
border-radius: 2px;
position: absolute;
margin-left: -120px;
width: 300px;
z-index: 10;
margin-top: 35px;
}
.color-picker > div {
width: 20px;
display: inline-block;
height: 20px;
margin: 3px;
border-radius: 100%;
opacity: 0.7;
}
.picker-wrapper {
padding: 20px;
display: inline;
}
.color-picker > div:hover {
opacity: 1;
}