forked from obsproject/obs-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
obs.css
145 lines (119 loc) · 2.66 KB
/
obs.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@charset 'UTF-8';
* {
font-family: "Source Sans Pro", sans-serif;
}
body {
/* white_carbon2.png */
background: #f6f8f9 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIBAMAAAA2IaO4AAAAFVBMVEX19PXo5ujv7u/o5ej29fb18/X29PaHCvlgAAAAIklEQVQIHWNgEARCBiUgNHQQdAAzGAIgYglKDIIOgglgMQA+hAOJM/f1wAAAAABJRU5ErkJggg==");
}
div#doc-content {
background: rgb(244, 244, 244);
}
/* glowing stuff */
h1.glow, h2.glow, h3.glow,
h4.glow, h5.glow, h6.glow {
text-shadow: 0 0 15px rgb(183, 28, 28);
}
div.memitem.glow {
box-shadow: 0 0 15px rgb(183, 28, 28);
}
/* header */
div#titlearea {
background: #f5f5f5;
margin-bottom: 20px;
padding: 10px 0;
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.35);
border-bottom: 0;
background-image: linear-gradient(
bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
background-image: -o-linear-gradient(
bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
background-image: -moz-linear-gradient(
bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
background-image: -webkit-linear-gradient(
bottom, rgb(239,239,239) 0%, rgb(255,255,255) 100%);
}
div#projectname {
font-family: 'Source Sans Pro', sans-serif;
font-size: 25px;
font-weight: bold;
}
div#projectbrief {
font-family: 'Source Sans Pro', sans-serif;
font-size: 13px;
}
/* the first tab bar is different ... */
div.tabs {
background: #3b3d3e;
height: 30px;
font-size: 14px;
}
div.tabs li {
background: transparent;
line-height: 30px;
}
div.tabs li:hover {
background: rgb(46, 46, 46);
}
div.tabs a {
color: rgba(255, 255, 255, 0.75);
background: transparent;
text-transform: uppercase;
text-shadow: none;
}
div.tabs a:hover {
color: rgb(233, 233, 233);
background: transparent;
}
div.tabs li.current a {
color: rgb(74, 74, 74);
background: rgb(250, 250, 250);
text-shadow: none;
}
/* the other tabs are the same */
div.tabs2,
div.tabs3 {
background: rgb(250, 250, 250);
border: 1px solid rgb(196, 196, 196);
border-top: 0;
font-size: 13px;
}
div.tabs2 li,
div.tabs3 li {
background: transparent;
line-height: 30px;
}
div.tabs2 a,
div.tabs3 a {
padding: 0 8px;
color: rgb(183, 28, 28);
background: transparent;
}
div.tabs2 a:hover,
div.tabs3 a:hover {
color: rgb(74, 74, 74);
background: transparent;
text-shadow: none;
}
div.tabs2 li.current a,
div.tabs3 li.current a {
color: rgb(74, 74, 74);
background: transparent;
text-shadow: none;
}
/* nav path (at the bottom of the page) */
div.navpath {
background: rgb(233, 233, 233);
border: 1px solid rgb(196, 196, 196);
border-width: 1px 0;
font-size: 13px;
line-height: 20px;
}
div.navpath ul {
background: transparent;
border: 0;
}
/* directories */
div.directory {
border-color: rgba(0, 0, 0, 0.35);
}