Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
surya-dev-singh
GitHub Repository: surya-dev-singh/BITB-framwork
Path: blob/main/style.css
500 views
1
@font-face {
2
font-family: system;
3
font-style: normal;
4
font-weight: 300;
5
src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"),
6
local("Roboto-Light"), local("DroidSans"), local("Tahoma"),
7
local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light");
8
}
9
10
html,
11
body {
12
width: 100%;
13
height: 100%;
14
}
15
16
#title-bar {
17
height: 31px;
18
background-color: black;
19
width: 100%;
20
display: flex;
21
justify-content: space-between;
22
user-select: none;
23
}
24
25
#logo {
26
padding-left: 5px;
27
vertical-align: middle;
28
}
29
30
#logo-description {
31
color: white;
32
font-size: 12px;
33
font-family: "system";
34
vertical-align: middle;
35
}
36
37
#minimize {
38
color: white;
39
font-size: 12px;
40
padding: 9px 15px 7px 15px;
41
}
42
43
#square {
44
color: white;
45
font-size: 22px;
46
padding: 0px 15px 5px 15px;
47
}
48
49
#exit {
50
color: white;
51
font-size: 15px;
52
padding: 7px 17px 7px 17px;
53
}
54
55
#url-bar {
56
height: 28px;
57
background-color: #1b1a1a;
58
width: 100%;
59
display: flex;
60
align-items: center;
61
white-space: nowrap;
62
overflow: scroll;
63
text-overflow: ellipsis;
64
-ms-overflow-style: none;
65
scrollbar-width: none;
66
}
67
68
#url-bar::-webkit-scrollbar {
69
display: none;
70
}
71
72
#ssl-padlock {
73
user-select: none;
74
padding-left: 8px;
75
margin-right: 8px;
76
}
77
78
#domain-name {
79
color: white;
80
font-size: 14px;
81
font-family: "system";
82
}
83
84
#domain-path {
85
color: #9c9898;
86
font-size: 14px;
87
font-family: "system";
88
}
89
90
#title-bar-width {
91
width: calc(100% + 2px); /* 2px added to allow for border on iframe */
92
}
93
94
#content {
95
width: 100%;
96
height: 700px;
97
border: 1px solid gray;
98
}
99
100
#window {
101
color: transparent;
102
background-color: transparent;
103
border-color: transparent;
104
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
105
height: 759px; /* title bar height + content height */
106
width: 40%;
107
}
108
109