Subversion Repositories eFlore/Applications.cel

Rev

Rev 3631 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3631 idir 1
@CHARSET "UTF-8";
2
 
3
*,
4
*:active,
5
*:focus {
6
	outline:none !important;
7
}
8
 
9
body {
10
    font-family: Muli,sans-serif;
11
  	font-size: 0.8rem;
12
  	font-weight: 300;
13
  	color: #606060;
14
}
15
 
16
.h2, h2 {
17
	font-size: 1.15rem;
18
}
19
 
20
.h3, h3 {
21
	font-size: 1.05rem;
22
}
23
 
24
.label, label, .list-label {
25
	font-weight: 700;
26
}
27
 
28
.list label, .list .label {
29
	font-weight: 400;
30
}
31
 
32
ul {
33
	padding: 0;
34
}
35
 
36
.hidden {
37
	display: none !important;
38
}
39
 
40
.btn {
41
	margin: 1rem 0;
42
}
43
 
44
.btn:not(.btn-outline-secondary),
45
.btn-outline-secondary:hover {
46
	color:#fff;
47
}
48
 
49
.btn.btn-warning {
50
	background-color: #e16e38;
51
}
52
 
53
.btn.btn-warning:hover {
54
	background-color: #e6885b;
55
}
56
 
57
.btn.btn-success {
58
	background-color: #a2b93b;
59
}
60
 
61
.btn.btn-success:hover {
62
	background-color: #b3c954;
63
}
64
 
65
select:-moz-focusring {
66
    color: transparent;
67
    text-shadow: 0 0 0 #606060;
68
}
69
 
70
.cel-photo-source a {
71
	color: #006979;
72
	font-weight: 400;
73
}
74
 
75
.cel-infos a,
76
.cel-photo-source a,
77
#bloc-infos-img a {
78
	border-bottom: 1px solid;
79
	border-bottom: .1rem solid;
80
	text-decoration: none !important;
81
	-webkit-transition: background .2s ease;
82
	-o-transition: background .2s ease;
83
	transition: background .2s ease;
84
	cursor: pointer;
85
}
86
 
87
.cel-infos a:hover,
88
.cel-photo-source a:hover {
89
    background-color: rgba(0,105,121,.1);
90
}
91
 
92
.modal-header,
93
.modal-footer {
94
	border : none;
95
}
3826 idir 96
 
97
.todo {
98
	display: none !important;
99
}