Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Estilo.css
blob: 734a9d06064e87768edb70c7adf9712c255823d6 (plain)
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
/*http://wiki.xfce.org/howto/gtk_theme*/
/*https://developer.gnome.org/gtk3/3.0/GtkCssProvider.html*/
/*background: url{../images/imagen.png} no-repeat;*/

/* Contenedores */
GtkWindow {
    background-color: #edf5ff;
    color: #000000;
}

DialogoProyecto {
    background-color: #edf5ff;
    color: #000000;
    background-image: -gtk-gradient(linear,
        left top, left bottom,
        from(shade(#edf5ff, 0.50)),
        to(shade(#edf5ff, 1.00)));
}

BasePanel {
    background-color: #edf5ff;
}

WorkPanel {
    background-color: #edf5ff;
}

/* Widgets */

Menu {
    background-color: #000000;
    color: #ffffff;
}

ToolbarArchivo {
    background-color: #ffffff;
    background-image: -gtk-gradient(linear,
        left top, left bottom,
        from(shade(#edf5ff, 0.50)),
        to(shade(#edf5ff, 1.00)));
}

ToolbarProyecto {
    background-color: #ffffff;
    background-image: -gtk-gradient(linear,
        left top, left bottom,
        from(shade(#edf5ff, 0.50)),
        to(shade(#edf5ff, 1.00)));
}

ToolbarTerminal {
    background-color: #ffffff;
    background-image: -gtk-gradient(linear,
        left top, left bottom,
        from(shade(#edf5ff, 1.00)),
        to(shade(#edf5ff, 0.50)));
}

ToolbarBusquedas {
    background-color: #ffffff;
    background-image: -gtk-gradient(linear,
        left top, left bottom,
        from(shade(#edf5ff, 1.00)),
        to(shade(#edf5ff, 0.50)));
}