forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (69 loc) · 1.41 KB
/
style.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
74
75
76
77
78
79
80
81
82
/* Copyright 2022 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.sectionTitle {
margin-left: 10px;
padding-left: 5px;
padding-right: 5px;
margin-right: 10px;
background-color: white;
display: inline-block;
font-family: Roboto;
}
.section {
margin-top: -10px;
padding-top: 10px;
border: 1px dashed silver;
font-family: Roboto;
padding-left: 5px;
padding-bottom: 10px;
padding-right: 10px;
}
.modalContainer {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
background-color: rgba(100, 100, 100, 0.4);
display: none;
}
:root {
--mdc-theme-primary: rgb(69, 69, 85);
--mdc-theme-secondary: rgb(141, 157, 177);
--mdc-theme-on-primary: rgb(208, 219, 166);
--mdc-theme-on-secondary: rgb(231, 233, 205);
--mdc-theme-surface: rgb(238, 235, 235);
--mdc-theme-on-surface: black;
}
.mdc-button {
font-size:x-small;
border: 1px solid #725b44;
}
.mdc-text-field {
font-size:small;
}
.mdc-chip {
z-index: 2;
}
.mdc-list {
padding: 4px 0;
}
.mdc-list-item {
padding: 0 8px;
}
.mdc-list-item__text {
font-size:small;
line-height: 1.25rem;
}
.material-icons-outlined {
font-size:18px;
}
button#connect {
--mdc-theme-primary:green;
--mdc-theme-on-primary: white;
}
button#disconnect {
--mdc-theme-primary:darkred;
--mdc-theme-on-primary: white;
}