-
Notifications
You must be signed in to change notification settings - Fork 1
/
stylesheet.css
63 lines (54 loc) · 1.34 KB
/
stylesheet.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
.button-box {
spacing: 5px;
padding-right: 30px;
padding-left: 30px;
}
.buttonStyle {
border: 1px solid #8b8b8b;
background-gradient-direction: vertical;
background-gradient-start: rgba(255, 255, 255, 0.2);
background-gradient-end: rgba(255, 255, 255, 0);
border-radius: 9px;
padding: 0px 10px;
}
.buttonStyle:hover {
background-gradient-start: rgba(255, 255, 255, 0.3);
background-gradient-end: rgba(255, 255, 255, 0.1);
}
.buttonIcon {
icon-size: 2em;
}
.newproxysection {
padding:0 12px;
}
/* Same style as #searchEntry on theme/gnome-shell.css */
#newproxy {
padding: 4px 12px;
border-radius: 17px;
color: rgb(128, 128, 128);
border: 2px solid rgba(245,245,245,0.2);
background-gradient-start: rgba(5,5,6,0.1);
background-gradient-end: rgba(254,254,254,0.1);
background-gradient-direction: vertical;
selected-color: black;
caret-color: rgb(128, 128, 128);
caret-size: 1px;
width: 150px;
transition-duration: 300;
box-shadow: inset 0px 2px 4px rgba(0,0,0,0.6);
}
#newproxy:focus,
#newproxy:hover {
border: 2px solid rgb(136,138,133);
background-gradient-start: rgb(200,200,200);
background-gradient-end: white;
background-gradient-direction: vertical;
}
#newproxy:hover {
transition-duration: 300;
}
#newproxy:focus {
color: rgb(64, 64, 64);
font-weight: bold;
transition-duration: 0;
}