aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DashboardView.scss
blob: b8a6f6c056a460f9ec34e57f20d85d130a63a913 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
@import "./global/globalCssVariables";


.dashboard-view {
      padding: 50px;
      display: flex;
      flex-direction: row;
      width: 100%;
      position: absolute;

      .left-menu {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            width: 250px;
            min-width: 250px;
      }

      .all-dashboards {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            overflow-y: scroll;
      }
}

.text-button {
    cursor: pointer;
      padding: 3px 0;
      &:hover {
            font-weight: 500;
      }

      &.selected {
            font-weight: 700;
      }
}

.new-dashboard-button {
    font-weight: 600;
    padding-bottom: 10px;
}

.dashboard-container-new {
    border-radius: 10px;
    width: 250px;
    height: 200px;
    font-size: 120px;
    font-weight: 100;
    text-align: center;
    border: solid 2px $light-gray;
    margin: 0 0px 30px 30px;
    cursor: pointer;
    color: $light-gray;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;

    &:hover {
        color: $light-blue;
        border: solid 2px $light-blue;
    }
}

.dashboard-container {
      border-radius: 10px;
      cursor: pointer;
      width: 250px;
      height: 200px;
      outline: solid 2px $light-gray;
      display: flex;
      flex-direction: column;
      margin: 0 0px 30px 30px;
      overflow: hidden;

      &:hover{
        outline: solid 2px $light-blue;
      }

      .title {
            margin: 10px;
            font-weight: 500;
      }

      img {
            width: auto;
            height: 80%;
      }

      .info {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 0px 10px;
      }

      .more {
            z-index: 100;
      }
}

.new-dashboard {
    color: $dark-gray;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;

    .header {
        font-size: 1.5em;
        font-weight: 600;
    }

    .title-input,
    .color-picker {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        font-weight: 500;
        gap: 5px;
        z-index: 5;

        .input {
            border-radius: 10px;
            padding: 5px 10px;
        }
    }

    .button-bar {
        display: flex;
        gap: 5px;
        flex-direction: row;
        justify-content: flex-end;
    }
}