-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.scss
More file actions
101 lines (86 loc) · 1.48 KB
/
styles.scss
File metadata and controls
101 lines (86 loc) · 1.48 KB
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
html, body {
padding: 0;
margin: 0;
box-sizing: content-box;
}
body {
border-top: 1px solid transparent;
}
.header{
background: #eee;
border-bottom: 1px solid #ddd;
height: 50px;
font-family: 'Raleway', sans-serif;
h1 {
font-family: 'Raleway', sans-serif;
font-size: 27px;
padding: 10px 0 0 20px;
color: #777;
margin: 0;
}
}
.card-container {
width: 550px;
margin: 0 auto;
box-sizing: border-box;
h2, h3 {
font-family: 'Raleway', sans-serif;
font-size: 27px;
padding: 10px 0 5px 0;
color: #777;
margin: 0;
}
.card-text {
background: #eee;
padding: 30px;
margin-bottom: 20px;
box-sizing: border-box;
}
.card-question {
height: 250px;
margin-bottom: 0;
> div {
white-space: pre-wrap;
height: 100%;
overflow: scroll;
}
}
.card-text-container {
min-height: 250px;
}
.card-submit {
cursor: pointer;
border: none;
background: #eee;
height: 44px;
color: #777;
border-radius: 8px;
font-size: 23px;
width: 100%
}
}
.card-list-container {
padding: 10px 20px;
> div {
display: flex;
overflow: scroll;
}
}
.card-list-item {
cursor: pointer;
display: inline-block;
background: #eee;
height: 30px;
min-width: 30px;
margin-right: 5px;
margin-bottom: 5px;
padding-top: 6px;
box-sizing: border-box;
text-align: center;
&.done {
background: lightblue;
}
&.current {
background: indianred;
}
}