forked from CodewarsClone/Codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtraining.scss
More file actions
137 lines (117 loc) · 2.72 KB
/
Copy pathtraining.scss
File metadata and controls
137 lines (117 loc) · 2.72 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
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
/************TRAINING PAGE STYLES*********/
$sidebar-color: #222222;
$main-background: #303133;
$container1: #262729;
$container2: #2B2C2E;
$container3: #3C3C3C;
$container4: #1D1D1F;
$blueContainer: #363749;
$button1: #1E1F21;
$font: 'Lato', sans-serif;
$yellow-color: #ECB613;
$blue-color: #6795DE;
$orange-color: #CF4B32;
$clone-wars-color: rgb(217, 217, 217);
$grey-color: #C0C0C0;
// STUFF ALONG THE TOP
.training-top {
background-color: green;
height: 100px;
margin-top: 50px;
display: flex;
justify-content: space-between;;
align-items: center;
}
.kata-name-container {
background-color: blue;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
}
.kata-name-container-top {
background-color: blue;
display: flex;
justify-content: flex-start;
align-items: center;
}
.assorted-options {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.view-options {
height: 50px;
width: 100px;
background-color: #3A3B3D;
margin-right: 5px;
}
#difficulty-icon {
height: 30px;
width: 50px;
margin-right: 5px;
}
/***********MAIN TRAINING AREA***********/
.kata {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.kata-right {
display: flex;
flex-direction: column;
padding-top: 2vh;
height: 105vh;
width: 60vw;
background-color: $container1;
margin: 15px 15px 15px 0;
padding: 10px;
}
.instructions {
// height: calc(100vh - 150px);
width: 40vw;
overflow: scroll;
margin: 15px;
background-color: $container1;
padding: 10px;
height: 105vh;
}
.instructions-head {
width: 40vw;
height: 5vh;
}
.instructions-selector {
width: 120px;
height: 40px;
}
hr {
background-image: -webkit-linear-gradient(left, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
background-image: -moz-linear-gradient(left, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
background-image: -ms-linear-gradient(left, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
background-image: -o-linear-gradient(left, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
background-image: -linear-gradient(left, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
}
.test-examples-button {
border: 1px solid #91b2e7;
border-radius: 4%;
width: 113px;
height: 30px;
background-color: #3C3C3C;
margin:15px;
}
.test-suite-button {
border: 1px solid #91b2e7;
border-radius: 4%;
width: 113px;
height: 30px;
background-color: #91b2e7;
margin:15px;
}
.button-div {
display:flex;
justify-content: right;
}
.example-tests-div {
height: 15vh;
}