-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
74 lines (63 loc) · 1.45 KB
/
global.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.lined {
background: repeating-linear-gradient(
transparent,
transparent 27px,
#93a1a1 27px,
#93a1a1 28px,
transparent 28px,
transparent 32px
);
background-attachment: scroll;
/* The rectangle in which to repeat.
It can be fully wide in this case */
}
.lined-dark {
background: repeating-linear-gradient(
#eee8d5,
#eee8d5 27px,
#93a1a1 27px,
#93a1a1 28px,
#eee8d5 28px,
#eee8d5 32px
);
background-attachment: scroll;
/* The rectangle in which to repeat.
It can be fully wide in this case */
}
.separator {
display: flex;
align-items: center;
text-align: center;
}
.separator::before,
.separator::after {
content: '';
flex: 1;
border-bottom: 2px solid #002b36;
}
.separator:not(:empty)::before {
margin-right: .25em;
}
.separator:not(:empty)::after {
margin-left: .25em;
}
@variants group-hover, hover, focus {
.notebook-input{
background: rgb(181,137,0);
background: linear-gradient(135deg, rgba(181,137,0,0.4) 9%, rgba(181,137,0,0.4) 34%, rgba(238,232,213,0.499019676229867) 64%);
background-size: 300% 100%;
background-repeat: no-repeat;
}
.notebook-unfocused {
background-position: 100% 0%;
}
.notebook-hover {
background-position: 50% 0%;
}
.notebook-focused {
background-position: 0% 0%;
}
}