FatimaGr commited on
Commit
cc5ab19
·
verified ·
1 Parent(s): 683a909
Files changed (1) hide show
  1. static/style.css +35 -0
static/style.css CHANGED
@@ -689,4 +689,39 @@ body, html {
689
 
690
  .graph-generate-btn:active {
691
  transform: translateY(0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  }
 
689
 
690
  .graph-generate-btn:active {
691
  transform: translateY(0);
692
+ }
693
+
694
+ .download-btn {
695
+ padding: 8px 16px;
696
+ background: #4CAF50;
697
+ color: white;
698
+ border: none;
699
+ border-radius: 4px;
700
+ cursor: pointer;
701
+ font-size: 14px;
702
+ transition: all 0.3s;
703
+ }
704
+
705
+ .download-btn:hover {
706
+ background: #45a049;
707
+ transform: translateY(-2px);
708
+ box-shadow: 0 2px 5px rgba(0,0,0,0.2);
709
+ }
710
+
711
+ .download-btn:active {
712
+ transform: translateY(0);
713
+ }
714
+
715
+ .results-container {
716
+ min-height: 200px;
717
+ background: rgba(255, 255, 255, 0.9);
718
+ border-radius: 8px;
719
+ padding: 20px;
720
+ margin-top: 20px;
721
+ }
722
+
723
+ #downloadSection {
724
+ padding-top: 15px;
725
+ border-top: 1px solid #eee;
726
+ margin-top: 15px;
727
  }