-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmystyle.css
More file actions
63 lines (54 loc) · 875 Bytes
/
mystyle.css
File metadata and controls
63 lines (54 loc) · 875 Bytes
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
H1{ text-align: center;
color:rgb(0,155,255);
}
H2{
text-align: center;
background-color: rgb(50,50,50);
color : white;
padding: 6px;
}
H3{
text-align: center;
color:rgb(0,155,255);
padding: 5px;
}
H4{
text-align: center;
color:rgb(250,250,255);
}
H5{
text-align: center;
color:rgb(250,250,255);
}
#banner {
width: 100%;
}
body {
background-color: grey ;
font-family: monospace;
color : white;
margin-right: 30px;
margin-left: 30px;
}
#buttons {
width: 100%;
}
#java {
width: 100%;
}
/* lien non visité */
a:link {
color:rgb(0,150,240);
}
/* lien visité */
a:visited {
color:rgb(171, 216, 245);
}
/* souris sur le lien */
a:hover {
color:#1E90FF;
}
/* lien sélécté */
a:active {
color: rgb(0,170,170);
}