blob: 6e5fd2593ee49afca5c873e93677a3c5dac958b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
a.hint-static-link {
cursor: pointer;
}
.hint-static img {
max-width: 80%;
/* center img trick */
display: block;
margin-left: auto;
margin-right: auto;
}
.hints > div {
border: 1px solid gray;
border-radius: 4px;
margin-bottom: 0.5em;
margin-top: 0.5em;
padding: 0.5em;
}
.hints > div:first-child {
border: 2px solid black;
}
|