forked from ProjectMoon/MetaDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.css
executable file
·76 lines (64 loc) · 1.4 KB
/
theme.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
/*
* theme.css
* This source file is part of the MetaDesktop Lightweight Webtop Environment (LWE).
* MetaDesktop is free software, licensed under the GNU GPL (General Public License).
* You are free to modify, redistribute, and change this program in any way.
*/
/* here we carry out all of the main theme definitions. These affect the desktop as a whole. */
/* this body definitions changes the overall text color, and other general things like links and the way buttons appear. */
body {
background-image: url('background.png');
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
color: white;
}
.titlebar {
height: 15px;
border: 1px solid black;
font-family: tahoma, verdana;
font-size: 11px;
padding: 2px;
}
.titlebar.focused {
background: blue;
}
.titlebar.unfocused {
background: darkblue;
}
.contentpane {
position: relative;
padding: 2px;
border: 1px solid black;
background: white;
color: black;
}
.taskbar {
height: 30px;
background: #1234AA;
border-top: 1px solid black;
}
.taskbarentry {
height: 25px;
width: 150px;
margin-top: 2px;
margin-right: 2px;
border: 1px solid black;
}
.taskbarentry.focused {
background: #AABBCC;
}
.taskbarentry.unfocused {
background: #123456;
}
.windowbuttons {
float: right;
position: relative;
top: -15px;
font-weight: bold;
color: green;
}
.windowbuttons a {
color: cyan;
text-decoration: none;
}