blob: d2e67c906ecd981d2dc98f8126d45dad73f59504 (
plain)
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
|
/*
* This file contains styles specific to the "manage" view. The corresponding
* HTML/template file is `views/manage.html`.
*/
main {
/* Center align and keep width readable. */
width: 100%;
max-width: 500px;
margin: 2rem auto;
}
.applications__item {
border: 2px solid white;
border-radius: 5px;
padding: 1rem;
}
.application__username {
font-size: x-large;
}
.applications {
display: flex;
flex-direction: column;
gap: 1rem;
}
.action {
display: contents;
}
.action__button {
width: 48%;
}
.action__button:hover { filter: brightness(90%); }
.action__button:active { filter: brightness(60%); }
.action__button--accept {
border: 2px solid #4b694b;
background-color: #608660;
color: white;
}
.action__button--reject {
border: 2px solid #891818;
background-color: #cd4747;
color: white;
}
|