summaryrefslogtreecommitdiff
path: root/assets/css/src/project.css
blob: 3ffdc6290a91763c0d064fb41325f9eb71f89c60 (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
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
.js-project-creation-options {
    max-width: 500px;
    border-left: 3px dotted #efefef;
    margin-top: 20px;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-top: 5px
}

.project-overview-columns {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4em
}

@media (max-width: 480px) {
    .project-overview-columns {
        display: block
    }
}

.project-overview-column {
    text-align: center;
    margin-right: 3%;
    margin-top: 5px;
    padding: 3px 15px 3px 15px;
    border: 1px dashed #ddd
}

@media (max-width: 480px) {
    .project-overview-column {
        text-align: left
    }
}

.project-overview-column small {
    color: var(--color-light);
}

.project-overview-column strong {
    color: var(--color-medium);
    display: block
}

@media (max-width: 480px) {
    .project-overview-column strong {
        display: inline
    }
}

.project-header {
    margin-bottom: 8px
}

.project-header .dropdown-component {
    margin-top: 4px;
    margin-right: 5px;
    float: left
}

@media (max-width: 768px) {
    .project-header .dropdown-component {
        float: none
    }
}

.project-header .views-switcher-component {
    margin-top: 4px;
    float: left
}

@media (max-width: 768px) {
    .project-header .views-switcher-component {
        float: none;
        margin-bottom: 10px
    }
}

.project-header .filter-box-component form {
    margin: 0
}