-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfluent-ui.css
107 lines (92 loc) · 1.82 KB
/
fluent-ui.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
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
body {
font-family: 'Segoe UI';
}
@media (prefers-color-scheme: light) {
.fluent-textbox {
background-color: white;
border-radius: 5px;
border: 1px solid #e5e5e5;
color: black;
}
#dialog-box {
background-color: #f3f3f3;
}
.fluent-Button {
background-color: #fbfbfb;
color: white;
}
.fluent-Button:hover {
background-color: #f6f6f6;
}
}
@media (prefers-color-scheme: dark) {
.fluent-textbox {
background-color: #2d2d2d;
border-radius: 5px;
border: 1px solid #9a9a9a;
color: white;
}
#dialog-box {
background-color: #181818;
}
.fluent-Button {
background-color: #2d2d2d;
color: white;
}
.fluent-Button:Hover {
background-color: #323232;
}
}
#dialogContainer {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#dialog-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 350px;
padding: 10px;
border-radius: 8px;
border: 1px solid #9a9a9a;
}
.fluent-AccentButton {
background-color: #62cdfe;
border-radius: 5px;
border: none;
width: 100%;
display: inline-block;
cursor: pointer;
color: black;
font-size: 13px;
padding: 7px;
text-decoration: none;
}
.fluent-AccentButton:hover {
background-color: #47b1e8;
}
.fluent-AccentButton:active {
background-color: #42a1d2;
color: #245874;
}
.fluent-Button {
background-color: #2d2d2d;
border-radius: 5px;
border: none;
width: 100%;
display: inline-block;
cursor: pointer;
font-size: 13px;
padding: 7px;
text-decoration: none;
}
.fluent-textbox {
width: 100%;
height: 25px;
border-radius: 5px;
}