-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeReview.css
117 lines (106 loc) · 1.94 KB
/
codeReview.css
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
body {
background: #CFF;
display: grid;
place-items: center;
width: 95%;
height: 100%;
margin: 0px;
padding: 5px;
color: black;
}
#container {
border: 2px solid #6FF;
height: 100vh;
width: 90vw;
max-width: 480px;
margin: 0px;
padding: 3px;
display: grid;
grid-template-rows: 1fr 1fr 10fr 2fr;
}
#q-space {
border: 2px solid #6FF;
border-radius: 5%;
text-align: center;
}
#feedback-space {
border: 2px solid #6FF;
border-radius: 5%;
text-align: center;
}
.rndTopicButton {
display: block;
margin: auto;
background: purple;
color: white;
padding: 5px;
border-radius: 10%;
}
.chooseQbutton {
display: block;
margin: auto;
background: rgb(235, 41, 235);
color: white;
padding: 5px;
border-radius: 10%;
}
fieldset {
display:flex;
flex-direction: column;
align-items: center;
margin: 0px 0px 15px 0px;
padding: 10px;
box-shadow: 3px 3px 5px 0px #ccc;
}
legend {
box-shadow: 3px 3px 5px 0px #ccc;
}
input {
display: inline-block;
margin: auto;
}
.q-card {
display: block;
background: white;
padding:5px;
margin: auto;
/* border: 2px solid #6FF; */
border-radius: 30%;
box-shadow: 3px 3px 5px 0px #ccc;
cursor: pointer;
}
.q-card:hover {
background: pink
}
/* specific to sortq */
.sortq-li {
display: flex;
align-items: center;
background: white;
margin: 2px 7px 2px 7px;
padding-left: 3px;
width: auto;
min-height: 30px;
box-shadow: 3px 3px 5px 0px #ccc;
cursor: move;
}
.sortq-li:hover {
background: pink;
}
.codeSpace {
white-space: pre-wrap;
}
.wrong-pos {
border-left: 3px solid red;
}
.right-pos {
border-left: 3px solid green;
}
/* Vue transition classes */
.fade-enter-active, .fade-leave-active {
transition: all 0.25s ease;
}
.fade-enter, .fade-leave-to {
transform: translateX(-100px);
opacity: 0;
}