forked from rocicorp/replicache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
92 lines (82 loc) · 1.65 KB
/
Copy pathApp.css
File metadata and controls
92 lines (82 loc) · 1.65 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
.App-header {
align-items: center;
background-color: var(--darkest);
color: var(--white);
display: flex;
flex-direction: column;
font-size: 10vmin;
height: 10vh;
justify-content: center;
padding: 10px;
}
.App-sub-header {
background-color: #282c34;
color: var(--white);
display: flex;
flex-direction: row;
font-size: 15px;
height: 30px;
justify-content: space-around;
}
.App-sub-header button {
background: transparent;
border: 0;
color: var(--white);
cursor: pointer;
font: inherit;
}
.App-sub-header button:hover {
color: #61dafb;
text-decoration: underline;
}
.App-list {
display: block;
font-size: 15px;
padding: 5px;
}
.App-list > li {
align-items: center;
background-color: var(--white);
color: var(--darkest);
display: block;
display: flex;
justify-content: left;
margin: 0;
}
.App-list > li > label {
align-items: center;
display: flex;
flex: 1;
}
.App-list > li > label > input[type='text'] {
background: transparent;
border: 0;
border-bottom: 1px solid var(--lightest);
border-radius: 0;
color: inherit;
display: flex;
flex: 1;
font: inherit;
margin: 2px;
padding: 5px;
transition: 0.3s border-bottom-color;
}
.App-list > li > label > input[type='text']:focus,
.App-list > li > label > input[type='text']:hover {
border-bottom: 1px solid var(--dark);
outline: none;
}
.App-list > li > svg,
.App-list > li > button {
background: transparent;
border: 0;
fill: var(--light);
transition: 0.3s fill;
}
.App-list > li > svg:focus,
.App-list > li > svg:hover,
.App-list > li > button:focus,
.App-list > li > button:hover {
fill: var(--darkest);
outline: none;
}