-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (78 loc) · 1.59 KB
/
style.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
/* police */
@font-face {
font-family: "font1";
src: url(./assets/NotoSans-Regular.ttf);
}
/* gestion du body */
body{
font-family: 'font1', sans-serif;
background: linear-gradient(to right, rgba(191,255,0,1) 0%, rgba(70,250,181,1) 100%);
}
/* Titre */
h1{
margin: 0px;
text-align: center;
font-size: 3em;
text-shadow: 4px 4px 10px;
}
/* titres */
h2, h3, h4, h5, h6{
text-decoration: underline;
}
/* bouton */
a{
background: white;
text-decoration: none;
color: black;
padding: 5px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
a:hover{
background: rgb(175, 175, 175);
/*margin-left: 5px;*/
/* font-weight: bold; */
padding: 5px;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}
/* photo */
img{
border-radius: 7px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
/* tableau */
table{
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
/* video */
video{
border-radius: 7px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
/* formulaire */
input{
background: transparent;
border-radius: 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
select{
background: transparent;
border-radius: 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
textarea{
resize: none;
width: 250px;
height: 130px;
background: transparent;
border-radius: 7px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}
/*
textarea{
background: transparent;
}
select{
background: transparent;
} */