-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.css
90 lines (78 loc) · 1.3 KB
/
index.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
#keyNavi{
display: flex;
font-size: 1.4em;
font-weight: 400;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
max-width: 36em;
}
#keyNavi > span{
display: flex;
flex-grow: 1;
box-sizing: border-box;
flex-wrap: wrap;
justify-content: center;
}
#keyNavi > span > a{
display: block;
box-sizing: border-box;
margin: 0.4em 0.2em;
height: 1.9em;
}
.collateral{
height: 3em;
margin: 2em;
/* filter: saturate(0); */
/* opacity: 0.6; */
}
div.poster{
display: flex;
margin: 0;
padding: 2em 0;
vertical-align: bottom;
flex-wrap: wrap;
}
div.poster > *{
display: flex;
margin: 1em 0;
line-height: 120%;
}
a.button.task_list,
a.button.get_detail,
a.button.progress_list{
border: 1px solid var(--accent);
color: var(--accent);
}
a.button.submit_issues{
position: relative;
border: 1px solid gray;
background-color:gray;
color: white;
}
a.button.submit_issues i{
position: absolute;
display: block;
font-size: 1.56em;
left: 0.1em;
top: 0.1em;
}
a.button.how_to_enroll{
border: 1px solid var(--accent);
background-color: var(--accent);
color: white;
}
a.button:hover{
filter: brightness(1.5);
}
a.button:active{
filter: brightness(1.2);
}
sup.badge{
font-size: 0.4em;
padding: 0.1em 0.5em;
display: inline-block;
background-color: red;
color: white;
border-radius: 1em;
}