gregH commited on
Commit
2e14a4e
·
verified ·
1 Parent(s): 32419de

Update assets/css/custom_style.css

Browse files
Files changed (1) hide show
  1. assets/css/custom_style.css +40 -0
assets/css/custom_style.css CHANGED
@@ -80,3 +80,43 @@ input[type='radio'] { visibility: hidden; display: none; }
80
  .slider-content { width: 450px; position: relative; float: right; }
81
 
82
  #ppl-threshold, #gradient-norm-threshold { width: 3em; height: 1.6em; top: 50%; margin-top: -.8em; text-align: center; line-height: 1.6em; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80
  .slider-content { width: 450px; position: relative; float: right; }
81
 
82
  #ppl-threshold, #gradient-norm-threshold { width: 3em; height: 1.6em; top: 50%; margin-top: -.8em; text-align: center; line-height: 1.6em; }
83
+
84
+
85
+ .example-container {
86
+ max-width: 800px;
87
+ margin: auto;
88
+ padding: 20px;
89
+ border: 1px solid #ccc;
90
+ border-radius: 8px;
91
+ background-color: #f9f9f9;
92
+ }
93
+
94
+ .example-selector {
95
+ margin-bottom: 20px;
96
+ }
97
+
98
+ .example-selector button {
99
+ margin-right: 10px;
100
+ padding: 10px 20px;
101
+ cursor: pointer;
102
+ border: none;
103
+ border-radius: 5px;
104
+ background-color: #007bff;
105
+ color: white;
106
+ transition: background-color 0.3s;
107
+ }
108
+
109
+ .example-selector button:hover {
110
+ background-color: #0056b3;
111
+ }
112
+
113
+ .example-box {
114
+ padding: 20px;
115
+ border: 1px solid #ddd;
116
+ border-radius: 8px;
117
+ background-color: #fff;
118
+ }
119
+
120
+ .highlight {
121
+ background-color: yellow;
122
+ }