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
|
* {
font-family: CMS, Arial, Calibri, Ubuntu, Roboto, Liberation Sans, Helvetica, sans-serif;
}
body {
background-image: url("../image/oobe.jpg");
background-size: 100%;
background-repeat: no-repeat;
background-position: initial;
}
.discover {
max-width: 40%;
}
a img {
vertical-align: middle;
padding-right: 5px;
}
a {
padding: 10px;
border-radius: 5px;
border-style: solid;
border-color: black;
border-width: 1px;
text-decoration: none;
color: black;
transition: border-color 200ms, color 200ms;
}
a:hover {
border-color: rgb(43, 43, 43);
color: rgb(43, 43, 43);
}
a:active {
border-color: rgb(77, 77, 77);
color: rgb(77, 77, 77);
}
hr {
width: 64px;
border-color: black;
border-style: solid;
border-width: 1px;
border-bottom: none;
}
a:hover > img {
filter: opacity(75%);
}
|