-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (114 loc) · 2.29 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
html {
position: fixed;
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(255, 255, 255, 0.5);
}
body {
background: #f5f5f5;
color: #222;
font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
font-size: 13px;
line-height: 18px;
margin: 0px;
text-align: left;
}
#copyarea {
position: absolute;
left: -100px;
top: -100px;
}
.navigation {
height: 30px;
width: 180px;
-webkit-app-region: drag;
position: absolute;
right: 0;
background-color: rgba(0,0,0,0.5);
}
.gonav {
height: 30px;
width: 90px;
-webkit-app-region: drag;
position: absolute;
left: 0;
background-color: rgba(0,0,0,0.5);
}
.gonav input {
width: 105px;
background-color: #d0cece;
border: none;
padding: 3px;
color: #cc181e;
}
.address {
background-color: rgba(0,0,0,0.5);
padding: 5px 3px;
margin-top :30px;
width: 163px;
}
.address span{
background: #cc181e;
padding: 2px 5px;
color: white;
opacity: 0.8;
}
.address span:hover{
cursor: pointer;
opacity: 1;
}
.none {
display: none!important;
}
.close {
background: url('img/x.png') center no-repeat;
}
.view {
background: url('img/view.png') center no-repeat;
}
.search {
background: url('img/search.png') center no-repeat;
}
.minimize {
background: url('img/minimize.png') center no-repeat;
}
.copy {
background: url('img/link.png') center no-repeat;
}
.back {
background: url('img/back.png') center no-repeat;
}
.forward {
background: url('img/forward.png') center no-repeat;
}
.youtube {
background: url('img/youtube.png') center no-repeat;
}
.top {
background-image: url('img/top.png');
background-position: center;
background-repeat: no-repeat;
}
.navactive {
background-color: #7c7cbf;
}
.close, .view, .search, .top, .minimize,
.back, .forward, .youtube, .copy {
-webkit-app-region: no-drag;
background-size: 20px 20px;
height: 20px;
width: 20px;
margin: 5px;
float: right;
opacity: 0.7;
z-index: 50;
}
.back, .forward, .youtube {
float: left;
}
.close:hover, .view:hover, .search:hover, .top:hover, .copy:hover,
.minimize:hover, .back:hover, .forward:hover, .youtube:hover {
opacity: 1;
cursor: pointer;
}