summaryrefslogtreecommitdiff
path: root/rannak/mangud/uliopilane/utlused/utlused.css
blob: 3d967a936d41a84461e8c9f9aaf2f7965e6e5660 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/* Mäng ise */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #eee;
  color: #111;
  touch-action: none;
}

.moveOn{
    display: inline-block;
    border: none;
    padding: 6px 12px;
    margin-left: 11%;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    background-color: #4BB543;
    color: white;
}

button:disabled{
    opacity: 0.5;
    cursor: not-allowed;
}


/* Modal Stuff */
.avatar {
    border-radius: 20px;
    width: 100% !important;
    max-width: 15rem !important;
}

.modalHeaderWrapper{
    text-align: center;
    margin: 0 !important;
    width: 100% !important;
}


.closeModalButton {
  border-radius: 50px;
}

.modalButton{
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px !important;
    background-color: rgba(0,136,169,1) !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3 ease 0 !important;
    margin: 2% !important;
    font-size: 1.05rem !important;
    max-width: 10% !important;
}

.modalButton:hover{
    background-color: rgba(0,136,169,0.8) !important;
}




/* later added stuff here */ 

.wrapper {
  border-bottom: 3px solid gray;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.empty {
  width: 7rem;
  height: 7rem;
}

.drag {
  position: absolute;
  width: 7rem;
  height: 7rem;
  z-index: 1;
}

.active {
  background-color: grey !important;
}

.done {
  background-color: green !important;
}

/* end of later added stuff */


.draggable-elements {
  display: flex;
  justify-content: center;
  margin: 2rem;
}
.draggable {
  height: 5rem;
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0rem 1rem;
  cursor: move;
  transition: opacity 0.2s;
}

.droppable {
  height: 10rem;
  width: 25rem;
  margin: 1rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 8rem;
  font-weight: bold;
  background-color: #fff;
  border: 3px dashed #111;
  transition: border-width 0.2s, transform 0.2s, background-color 0.4s;
}
.droppable span {
  font-size: 1.25rem;
  pointer-events: none; /* The element is never the target of pointer events */
}

/* Drag and Drop Related Styling */

.droppable.droppable-hover {
  /* background-color: #bee3f0; */
  border-width: 5px;
  transform: scale(1.1);
}
.droppable.dropped {
  border-style: solid;
  color: #fff;
}
.droppable.dropped span {
  font-weight: bolder;
  margin-top: 0.5rem;
}
.droppable.dropped i {
  pointer-events: none;
}
.draggable.dragged {
  user-select: none;
  cursor: default;
}
.draggable.dragged:hover {
  opacity: 0.1;
}




/* Responssivness */

@media screen and (min-width: 1600px) {
    .container {
        margin-top: 4% !important;
    }
}