aboutsummaryrefslogtreecommitdiffstats
path: root/sdv/pdf/site/style/array.css
diff options
context:
space:
mode:
authoropensource-tnbt <sridhar.rao@spirent.com>2020-09-10 12:23:34 +0530
committerSridhar Rao <sridhar.rao@spirent.com>2020-09-12 03:37:23 +0000
commit86d4114ab61f9cb00c1d01f91e81e9a38c6ba2f6 (patch)
tree5d5048528f9c5a15b372e9c889a276b5a3721de2 /sdv/pdf/site/style/array.css
parent27fff834bee372c53e1b5d222c398543ac3f34aa (diff)
SDV: Platform Description Implementation.
This patch includes PDF Template and a tool to create PDF. Signed-off-by: Sridhar K. N. Rao <sridhar.rao@spirent.com> Change-Id: Ib702ff42352d584cb9146ff1959258c558e06615
Diffstat (limited to 'sdv/pdf/site/style/array.css')
-rw-r--r--sdv/pdf/site/style/array.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/sdv/pdf/site/style/array.css b/sdv/pdf/site/style/array.css
new file mode 100644
index 0000000..45a53fc
--- /dev/null
+++ b/sdv/pdf/site/style/array.css
@@ -0,0 +1,55 @@
+
+@keyframes popup {
+ 0%{
+ transform: scale(0.5);
+ }
+ 90%{
+ transform: scale(1.1);
+ }
+ 100%{
+ transform: scale(1.0);
+ }
+}
+
+.arr{
+ border-radius: 6px;
+ border-style: dashed;
+ border-color: #c9c9c9;
+ border-width: 2px;
+ display: inline-block;
+ padding-right: 3em;
+ margin-right: 15px;
+ margin-bottom: 5px;
+ position: relative;
+ animation: popup 0.2s ease;
+}
+
+
+.add-button{
+ background-image: url("../assets/plus-circle-solid.svg");
+ opacity: 0.7;
+ width: 2em;
+ height: 2em;
+ display: inline-block;
+ left: 0;
+}
+.add-button:hover{
+ opacity: 1
+}
+
+
+
+.del-button{
+ background-image: url("../assets/trash-alt-regular.svg");
+ background-repeat: no-repeat;
+ opacity: 0.7;
+ width: 2em;
+ height: 2em;
+ position: absolute;
+ right: 0.5em;
+ bottom: 0.5em;
+}
+.del-button:hover{
+ opacity: 1
+}
+