neon_arch commited on
Commit
b2c1482
1 Parent(s): ea32052

✨ feat: theme the new safe search menu (#210)

Browse files
Files changed (1) hide show
  1. public/static/themes/simple.css +26 -2
public/static/themes/simple.css CHANGED
@@ -70,6 +70,28 @@ body {
70
  filter: brightness(1.2);
71
  }
72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  .result_not_found {
74
  display: flex;
75
  flex-direction: column;
@@ -499,7 +521,8 @@ footer {
499
  color: var(--foreground-color);
500
  }
501
 
502
- .settings_container .user_interface select {
 
503
  margin: 0.7rem 0;
504
  width: 20rem;
505
  background-color: var(--background-color);
@@ -511,7 +534,8 @@ footer {
511
  text-transform: capitalize;
512
  }
513
 
514
- .settings_container .user_interface option:hover {
 
515
  background-color: var(--color-one);
516
  }
517
 
 
70
  filter: brightness(1.2);
71
  }
72
 
73
+ .search_area .search_options {
74
+ display: flex;
75
+ justify-content: space-between;
76
+ align-items: center;
77
+ }
78
+
79
+ .search_area .search_options select {
80
+ margin: 0.7rem 0;
81
+ width: 20rem;
82
+ background-color: var(--color-one);
83
+ color: var(--foreground-color);
84
+ padding: 1rem 2rem;
85
+ border-radius: 0.5rem;
86
+ outline: none;
87
+ border: none;
88
+ text-transform: capitalize;
89
+ }
90
+
91
+ .search_area .search_options option:hover {
92
+ background-color: var(--color-one);
93
+ }
94
+
95
  .result_not_found {
96
  display: flex;
97
  flex-direction: column;
 
521
  color: var(--foreground-color);
522
  }
523
 
524
+ .settings_container .user_interface select,
525
+ .settings_container .general select {
526
  margin: 0.7rem 0;
527
  width: 20rem;
528
  background-color: var(--background-color);
 
534
  text-transform: capitalize;
535
  }
536
 
537
+ .settings_container .user_interface option:hover,
538
+ .settings_container .general option:hover {
539
  background-color: var(--color-one);
540
  }
541