-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser.css
84 lines (71 loc) · 1.24 KB
/
browser.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
img.portrait {
width: 100%;
height: auto;
}
.browser_body {
font-family: 'Courier New', Courier, monospace;
background-color: #1e1e1e;
color: #dcdcdc;
}
* {
box-sizing: border-box;
}
.browser_container {
border: 3px solid #444;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
background-color: #2e2e2e;
}
.browser_row {
padding: 10px;
background: 2e2e2e;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.browser_column {
float: left;
}
.browser_left {
width: 15%;
}
.browser_right {
width: 10%;
}
.browser_middle {
width: 75%;
}
.browser_row:after {
content: "";
display: table;
clear: both;
}
.dot {
margin-top: 4px;
height: 12px;
width: 12px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
}
.browser_url {
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
width: 100%;
border-radius: 3px;
border: none;
background-color: #444;
margin-top: -8px;
height: 30px;
color: #ffffff;
padding: 5px;
}
.browser_bar {
width: 17px;
height: 3px;
background-color: #aaa;
margin: 3px 0;
display: block;
}
.browser_content {
padding: 15px;
}