-
Notifications
You must be signed in to change notification settings - Fork 477
/
Copy pathstyle.css
96 lines (81 loc) · 1.31 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
html,body{
width: 100%;
height: 100%;
}
#title-bar{
height: 31px;
background-color: #d6dae0;
width: 100%;
display: flex;
justify-content: space-between;
}
#logo{
padding-left: 5px;
vertical-align: middle;
}
#logo-description{
color: black;
font-size: 12px;
font-family: Segoe UI;
vertical-align: middle;
}
#minimize{
color:black;
font-size:12px;
padding:9px 15px 7px 15px;
}
#square{
color:black;
font-size:22px;
padding:0px 15px 5px 15px;
}
#exit{
color:black;
font-size:15px;
padding:7px 17px 7px 17px;
}
#url-bar{
height: 28px;
background-color: #F1F3F4;
width: 100%;
display: flex;
align-items: center;
white-space: nowrap;
overflow: scroll;
text-overflow: ellipsis;
-ms-overflow-style: none;
scrollbar-width: none;
border-bottom: 1px solid lightgray;
}
#url-bar::-webkit-scrollbar {
display: none;
}
#ssl-padlock{
padding-left: 8px;
margin-right:8px;
}
#domain-name{
color: #000000;
font-size: 14px;
font-family: Segoe UI
}
#domain-path{
color: #7C7C7C;
font-size: 14px;
font-family:Segoe UI;
}
#title-bar-width{
width: 100%;
}
#content{
width: 100%;
height: 700px;
}
#window{
color: transparent;
background-color: transparent;
border-color: transparent;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
height: 759px; /* title bar height + content height */
width: 40%;
}