-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.scss
107 lines (89 loc) · 1.54 KB
/
index.scss
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
// @import url("https://www.w3schools.com/w3css/4/w3.css");
html,
body {
margin: 0;
}
body {
align-items: center;
display: flex;
justify-content: center;
background: #dadada;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
.firstRow {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100% !important;
margin-bottom: 1rem;
}
.contentBlock {
margin: 0.5rem;
background: #f2f7f8c5;
border-radius: 0.5rem;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
padding: 2rem;
width: 100%;
height: revert;
}
.parameter {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 1rem;
}
.sliderDiv {
align-items: center;
display: flex;
flex-direction: column;
padding-left: 1rem;
}
.sliderValue {
margin: 0.2rem 0rem 0.5rem;
font-size: 0.7rem;
align-items: center;
}
.coefSlider{
width: 50%;
}
.title {
font-size: 1.1rem;
margin-bottom: 1rem;
width: 100%;
text-align: left;
}
.parameterHeader{
font-size: 1.1rem;
text-align: center;
font-weight: bold;
}
.parameterTextInput{
width: 5.4rem;
}
.tooltip {
position:absolute;
left:0;
bottom:18px;
}
.criteriaText {
margin-bottom: 2rem;
}
.criteriaDescription {
font-size: smaller;
font-style: italic;
}
.result {
margin-top: 1rem;
font-size: 1.5rem;
font-weight: bold;
}
.hidden {
display: none;
}