Marthee commited on
Commit
0a4480b
·
verified ·
1 Parent(s): a5d81a0

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +81 -0
static/style.css CHANGED
@@ -1064,3 +1064,84 @@ color:black;
1064
 
1065
  #canvas21 { border: 1px solid black; max-width: 50%; max-height: 50;}
1066
  #segmented-img {border: 1px solid black; max-width: 50%; max-height: 50; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1064
 
1065
  #canvas21 { border: 1px solid black; max-width: 50%; max-height: 50;}
1066
  #segmented-img {border: 1px solid black; max-width: 50%; max-height: 50; }
1067
+
1068
+ /* 2.6 2.8 dynamic fields */
1069
+ .dynamic-field-input {
1070
+ font-size: 12px;
1071
+ width: 26ch;
1072
+ height: 33px;
1073
+ border-radius: 1px;
1074
+ border-color: #646060;
1075
+ margin-bottom: 3px;
1076
+ margin-right: 0.2%;
1077
+ margin-left: -2.5px;
1078
+ text-align: center;
1079
+ font-family: "acumin-pro", sans-serif;
1080
+ font-weight: 400;
1081
+ font-style: normal;
1082
+ }
1083
+
1084
+ /* Add icon styling - blue circle with square border */
1085
+ .add-single-field-icon {
1086
+ width: 15px;
1087
+ height: 15px;
1088
+ background-color: rgb(47, 131, 198);
1089
+ border-radius: 100%;
1090
+ position: relative;
1091
+ border: none;
1092
+ cursor: pointer;
1093
+ margin-left: 10px; /* space from the input */
1094
+ margin-right: 16px; /* space before the remove icon (bigger) */
1095
+ margin-bottom: 3px;
1096
+ display: inline-block;
1097
+ vertical-align: middle;
1098
+ }
1099
+
1100
+ .add-single-field-icon::before {
1101
+ content: "";
1102
+ width: 28px;
1103
+ height: 28px;
1104
+ background-color: rgba(255, 255, 255, 0.2);
1105
+ border: 2px solid #2f83c6;
1106
+ border-radius: 5px;
1107
+ position: absolute;
1108
+ top: 50%;
1109
+ left: 50%;
1110
+ transform: translate(-50%, -50%);
1111
+ }
1112
+
1113
+ .add-single-field-icon:hover {
1114
+ box-shadow: 0 0 8px 2px #2f83c6;
1115
+ }
1116
+
1117
+ /* Remove icon styling - red circle with square border */
1118
+ .remove-single-field-icon {
1119
+ width: 15px;
1120
+ height: 15px;
1121
+ background-color: #f32b2b;
1122
+ border-radius: 100%;
1123
+ position: relative;
1124
+ border: none;
1125
+ cursor: pointer;
1126
+ margin-left: 0; /* no extra margin here */
1127
+ margin-bottom: 3px;
1128
+ display: inline-block;
1129
+ vertical-align: middle;
1130
+ }
1131
+
1132
+ .remove-single-field-icon::before {
1133
+ content: "";
1134
+ width: 28px;
1135
+ height: 28px;
1136
+ background-color: rgba(255, 255, 255, 0.2);
1137
+ border: 2px solid #f32b2b;
1138
+ border-radius: 5px;
1139
+ position: absolute;
1140
+ top: 50%;
1141
+ left: 50%;
1142
+ transform: translate(-50%, -50%);
1143
+ }
1144
+
1145
+ .remove-single-field-icon:hover {
1146
+ box-shadow: 0 0 8px 2px #f32b2b;
1147
+ }