forked from yunohost-themes/colorful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_portal.css
87 lines (77 loc) · 1.98 KB
/
custom_portal.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
/*
===============================================================================
This file contain extra CSS rules to customize the YunoHost user portal and
can be used to customize app tiles, buttons, etc...
===============================================================================
*/
/* Make page texts black */
.user-container h2,
.user-container small,
.user-container .user-mail,
.user-container .user-mail,
.footer a,
#ynh-logout {
color: black !important;
text-shadow: 0px, 0px, 5px, black !important;
}
.ynh-user-portal {
background-image: url("background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position-x: center;
width: 100%;
height: 100%;
}
#ynh-logout:hover {
background-color: rgba(118, 0, 137, 0.5) !important;
color: white !important;
}
/* Apps colors */
.app-tile {
background-color: rgba(255, 255, 255, 0.5) !important;
color: black !important;
}
.app-tile:hover {
background-color: rgba(100, 100, 255, 0.8) !important;
color: white !important;
}
.app-tile:hover:after,
.app-tile:focus:after,
.app-tile:hover:before,
.app-tile:focus:before {
background: rgba(100, 100, 255, 0.8) !important;
}
.form-text {background: rgba(121, 123, 131, 0.5);}
.btn, .classic-btn, .large-btn {
background-color: rgba(255, 255, 255, 0.5) !important;
color: black !important;
}
.classic-btn:hover, .large-btn:hover {
background-color: rgba(0, 68, 255, 0.5) !important;
color: white !important;
text-decoration: none;
}
.validate-btn:hover {
background-color: rgba(0, 129, 31, 0.5) !important;
color: white !important;
}
.link-btn:hover {
background-color: rgba(255, 239, 0, 0.5) !important;
}
.messages.info {
background: rgba(100, 100, 255, 0.8) !important;
}
.messages.danger {
background: rgba(255, 100, 100, 0.8) !important;
}
.control-label {
background: rgba(0, 0, 0, 0.5);
}
.form-text::placeholder {
color: #fff;
}
/* Use a custom logo image */
#ynh-logo {
z-index: 10;
background-image: url("./cloud.png");
}