-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmystyle.css
156 lines (131 loc) · 2.66 KB
/
mystyle.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
.container {
display: grid;
grid-auto-columns: 280px calc(100vw - 280px);
/* grid-template-rows: 0.2fr 1.8fr; */
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"Header Header"
"Input Results"
"Footer Footer";
}
body{
margin:0px;
overflow-x: hidden;
/* Fixes that the horizontal scrollbar appears when dont wanted - might create problems moving forward */
}
.Header {
grid-area: Header;
background-color: white;
border-bottom: lightgray solid 1.5px;
text-align: center; /* Centering */
}
.Input {
margin-left: 8px;
grid-area: Input;
background-color: white;
border-right: 0px gray dashed;
padding-right: 2px;
}
.Results {
grid-area: Results;
/* width: calc(90vw - 240px) */
width: calc(100% - 20px);
}
.Footer {
grid-area: Footer;
margin: 8px;
border-top: lightgray solid 1.0px;
text-align: center;
}
#beam_plot{
margin-top: 4px;
}
h1 {
font-size: 16px;
text-align: center;
}
table {
font-size: 12px;
border-collapse: separate;
width: 100%;
margin-top: 10px;
border: lightgray solid 1px;
border-radius: 5px;
border-spacing: 0px;
}
th, td {
padding: 0.25rem;
text-align: center;
/* border: 1px solid #ccc; */
/* border-top: black solid 1px; */
}
tbody td{
border-top: lightgray solid 1px;
}
tbody tr:hover{
background: #eee;
}
td input[type=text]{
box-sizing: border-box;
width: 100%
}
.delButton:hover{
color: blue;
cursor: pointer;
}
.slide-fade-enter-active {
transition: all .3s ease-out;
}
.slide-fade-leave-active {
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter-from,
.slide-fade-leave-to {
transform: translateX(20px);
opacity: 0;
}
.errorMessage{
color: red;
}
/* Styling the text of the point loads in the beam plot */
.ptLoadTx, .dispLoad1Tx, .dispLoad2Tx{
text-anchor: middle;
transform: translateY(-2px);
}
/* Styling the text of the supports in the beam plot */
.supText{
text-anchor: middle;
transform: translateY(10px);
}
/* Styling the maximum and minimum values of the diagram plots */
.maxValM{
text-anchor: middle;
transform: translateY(10px);
}
.minValM{
text-anchor: middle;
transform: translateY(-1px);
}
.maxValV,.maxValu,.maxValtheta{
text-anchor: middle;
transform: translateY(-1px);
}
.minValV,.minValu,.minValtheta{
text-anchor: middle;
transform: translateY(10px);
}
/* Support arrows colors */
.supLine, .supMomentArrow{
stroke: #4e79a7;
}
#arrowHeadSup, #momentArrow{
fill: #4e79a7;
}
.dispLoad1Arrow, .dispLoad2Arrow, .dispLoad3, #arrowHead, .ptLoadArrow, #momentArrowLoad{
stroke: #e15759;
fill: #e15759;
}
.ptMArrow{
stroke: #e15759;
}