forked from space192/PiscineWeb22
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Account.css
55 lines (51 loc) · 1.2 KB
/
Account.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
.SousBoites button
{
background-color: transparent;
color: var(--eceText);
height: 60px;
z-index: 1;
border: solid;
cursor: pointer;
}
.SousBoites button:hover
{
background: #013d42!important;
color: white;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
}
.SousBoites input
{
border: none;
outline: none;
box-sizing: border-box;
background-color: var(--fond1);
color: var(--textSousText);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.form-floating
{
border: none;
outline: none;
box-sizing: border-box;
background-color: var(--fond1);
color: var(--textSousText);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.SousBoites input:focus
{
border: none;
outline: none;
box-sizing: border-box;
background-color: var(--fond1);
color: var(--textSousText);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}