-
Notifications
You must be signed in to change notification settings - Fork 477
/
Copy pathstyle.css
121 lines (107 loc) · 1.9 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
html,body{
width: 100%;
height: 100%;
}
#logo{
padding-left: 5px;
vertical-align: middle;
}
#logo-description{
color: #404040;
font-size: 13px;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
vertical-align: middle;
margin-right: 30px;
font-weight: bold;
}
#url-bar{
height: 28px;
background-color: #EDEDEE;
border-bottom: 1px solid lightgray;
width: 100%;
display: flex;
align-items: center;
white-space: nowrap;
overflow: scroll;
text-overflow: ellipsis;
-ms-overflow-style: none;
scrollbar-width: none;
}
#url-bar::-webkit-scrollbar {
display: none;
}
#ssl-padlock{
padding-left: 8px;
margin-right:8px;
}
#domain-name{
color: black;
font-size: 14px;
font-family: Segoe UI;
}
#domain-path{
color: #878383;
font-size: 14px;
font-family: Segoe UI;
}
#title-bar-width{
width: calc(100% + 2px); /* 2px added to allow for border on iframe */
}
#title-bar{
text-align: center;
}
#content{
width: calc(100% + 2px);
height: 700px;
border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
}
#window{
color: red;
background-color: transparent;
border-radius: 7px 7px 7px 7px;
border-color: transparent;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 759px; /* title bar height + content height */
width: 40%;
}
.outer {
background: #b4b4b4;
opacity: 0.9;
padding: 5px 5px 5px 8px;
border-radius: 7px 7px 0px 0px;
}
.outer.dark {
background: #273138;
}
.outer.dark .dot {
background: #4a5c66;
}
.outer.yosemite {
background: #f6f6f6;
border: 1px solid #d8d8d8;
border-bottom: 1px solid #b4b4b4;
}
.dots{
float:left;
}
.dot {
display: inline-block;
width: 10px;
height: 10px;
background: #f9f9f9;
border-radius: 50%;
margin: 0 4px 0 0;
}
.dot.red {
background: #ff6057;
border: 1px solid #e14640;
}
.dot.amber {
background: #ffbd2e;
border: 1px solid #dfa123;
}
.dot.green {
background: #27c93f;
border: 1px solid #1dad2b;
}