-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (117 loc) · 2.52 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin&family=Nanum+Gothic+Coding&family=Roboto:ital,wght@0,100;0,900;1,100&display=swap');
:root {
--boddy-bg-color : lightblue;
--button-bg-color : #DDCA7D;
--button-font-color :#DC493A;
--h1-bg-color : black;
--h1-font-color : white;
--h2-bg-color: black;
--h2-font-color :white;
}
body {
background-color: var(--boddy-bg-color);
font-family: 'Roboto', sans-serif;
}
h1{
font-family: 'Roboto', sans-serif;
font-size : 50px;
text-align : center;
background-color: var(--h1-bg-color);
color: var(--h1-font-color);
}
sub{
font-size: 12px;
color :rgb(226, 226, 5);
}
h2{
font-family: 'Roboto', sans-serif;
font-size : 40px;
background-color: var(--h2-bg-color);
color: white;
width:60%;
text-align: end;
}
#recapi {
width: 100%;
text-align: center;
}
h3{
font-family: 'Roboto', sans-serif;
font-size : 25px;
text-decoration: underline dashed black;
}
h4{
font-family: 'Roboto', sans-serif;
font-size : 15px;
text-decoration: underline black;
}
label, #resultat, #nbArret,form {
font-family: 'Roboto', sans-serif;
font-size : 15px;
}
.NetaPayer{
text-transform: uppercase;
text-align: center;
border-style: solid;
border-color: crimson;
border-width: 10px;
width : 15%;
margin:auto;
font-size : 25px;
font-weight: bolder;
}
button{
background-color: var(--button-bg-color) ;
color: var(--button-font-color);
padding : 15px 32 px;
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
font-size: 20px;
border-radius: 8px;
transition-duration: 0.4s;
}
button:hover {
background-color: var(--button-font-color);
color: var(--button-bg-color);
}
#recapPercu, #recapRetenu, .arrow{
text-align : center;
width: 100%;
font-weight: bolder;
}
.img{
text-align: center;
}
.arrow {
height: 90px;
width: auto;
text-align: center;
}
#recapPercu, #recapRetenu{
font-size: 30px;
}
.emote{
font-size : 45px;
}
#recapRetenu{
color: red;
}
#traitBrut2, #indeSalariale, #indFonct, #primRep, #showPsc, .retenueSal, .chargesPat,#indFonctCar, #carenceRep{
width: 50%;
text-align: end;
}
.explicationCarence1,.explicationCarence{
font-style: italic;
color: blue;
font-size: 12px;
width:45%;
text-align: end;
}
#totalPer, #totalRetenu,#totalCharPatr{
text-align: end;
width: 60%;
}
@media print{
body{display:none}
}