forked from CodewarsClone/Codewars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolutions.scss
More file actions
124 lines (105 loc) · 2.54 KB
/
Copy pathsolutions.scss
File metadata and controls
124 lines (105 loc) · 2.54 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
$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;
$green-color: #5F8120;
/************** SOLUTIONS STYLES ************/
.solutions {
display: flex;
flex-direction: column;
align-items: center;
}
.any-solutions-div {
margin-bottom: 15px;
}
//SOLUTIONS UPPER DIV
.solutions-upper-div {
margin-top: 55px;
width: 60vw;
height: 20vh;
background-color: $container4;
display: flex;
align-items: flex-start;
padding: 20px;
}
.solutions-upper-left {
margin-right: 20px;
}
#solutions-profile-pic {
height: 65px;
width: 65px;
}
.solutions-upper-main {
height: 20vh;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start
}
.solutions-upper-upper {
display: flex;
}
#solutions-rank-icon {
height: 25px;
width: 60px;
}
//SOLUTIONS MAIN
.solutions-main {
background-color: $container1;
margin-top: 55px;
width: 60vw;
padding: 20px;
}
.solutions-main-head {
display: flex;
align-items: center;
}
.solution-code-box {
height: 30vh;
width: 30vw;
}
.all-solutions {
margin-top: 10px;
}
.solution-username {
display: flex;
align-items: center;
margin-bottom: 5px;
margin-left: 5px;
}
.solution-creator-icon {
height: 13px;
width: 13px;
margin-right: 8px;
}
.solution-text {
//I think this is the background color for the seti theme. The actual color that codewars uses on this page is $sidebar-color
background-color: #151718;
padding: 10px;
margin-top: 5px;
}
.solutions-vote-buttons-div {
display: flex;
align-items: center;
margin-top: 5px;
margin-left: -10px;
}
.solutions-bottom-border-div {
width: 59vw;
margin-left: -10px;
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);
}