blob: 2e1df13324b1160dac54100b751bfdc8e86c970d (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
|
.project-board {
margin-top: calc(#{$global-font-size} * 2);
display: grid;
grid-template-columns: 1fr;
grid-template-rows: auto;
grid-gap: 20px;
max-width: $layout-max-width;
}
.card {
min-height: 100%;
position: relative;
display: flex;
flex-direction: column;
text-decoration: none;
$border-width: 3px;
border-radius: $border-width;
border: 1px solid $post-link-color;
}
.card article {
padding: 20px;
}
.card h4 {
font-size: 20px;
margin: 0;
}
.card p {
color: $subscript-color;
line-height: 1.4;
}
.custom-card-footer {
display: flex;
justify-content: flex-end;
}
.custom-button {
font-size: $global-font-size;
font-weight: 400;
margin: 0 calc(#{$global-font-size} * 0.5);
padding: calc(#{$global-font-size} * 0.2) calc(#{$global-font-size} * 0.5);
$border-width: 3px;
border-radius: $border-width;
border: 1px solid $subscript-color;
color: $post-link-color;
background-color: transparent;
cursor: pointer;
//transition: border .3s;
transition: color .3s;
}
.custom-button-disabled {
cursor: no-drop;
}
.custom-button:hover {
border: 1px solid $post-link-color;
//background-color: $post-link-color;
color: $post-title-color;
}
|