Keiraj commited on
Commit
d615cc5
·
verified ·
1 Parent(s): 6680aa5

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +23 -16
style.css CHANGED
@@ -1,42 +1,46 @@
1
  /* Full Page Background - Dark Pink */
2
- * {
3
- box-sizing: border-box;
4
- background-color: #d63384 !important; /* Dark Pink Background */
5
- font-family: "Comic Sans MS", cursive, sans-serif; /* Playful font */
6
  color: white; /* Default text color */
 
 
 
 
 
7
  }
8
 
9
- /* Centered Box */
10
  .container-box {
11
  background-color: #f78fb3 !important; /* Lighter Pink */
12
- border: 3px solid white !important; /* White Border */
13
  border-radius: 20px;
14
- padding: 30px;
15
- width: 50%;
16
- max-width: 400px;
17
  text-align: center;
18
- margin: auto;
19
- margin-top: 10vh;
20
- box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
21
  }
22
 
23
  /* Title Styling */
24
  .title {
25
  font-size: 36px;
26
  font-weight: bold;
 
27
  margin-bottom: 10px;
28
  }
29
 
30
  /* Description */
31
  .description {
32
  font-size: 16px;
 
33
  margin-bottom: 20px;
34
  }
35
 
36
  /* Input Box - White with Dark Pink Border */
37
  input[type="text"], .gradio-input {
38
  background-color: white !important; /* White Input */
39
- border: 2px solid #d63384 !important; /* Dark Pink Border */
40
  border-radius: 10px;
41
  padding: 10px;
42
  color: black !important; /* Input text color */
@@ -44,6 +48,7 @@ input[type="text"], .gradio-input {
44
  width: 80%;
45
  max-width: 300px;
46
  margin: 10px auto;
 
47
  }
48
 
49
  /* Cute Buttons */
@@ -56,7 +61,7 @@ button {
56
  transition: all 0.3s ease-in-out;
57
  display: block;
58
  margin: 10px auto;
59
- border: 2px solid white;
60
  }
61
 
62
  button:hover {
@@ -71,9 +76,10 @@ button:hover {
71
  font-weight: bold;
72
  padding-top: 10px;
73
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
 
74
  }
75
 
76
- /* Center Content */
77
  .centered {
78
  display: flex;
79
  justify-content: center;
@@ -84,7 +90,7 @@ button:hover {
84
  /* Responsive Tweaks */
85
  @media (max-width: 768px) {
86
  .container-box {
87
- width: 80%;
88
  }
89
 
90
  .title {
@@ -99,3 +105,4 @@ button:hover {
99
  font-size: 18px;
100
  }
101
  }
 
 
1
  /* Full Page Background - Dark Pink */
2
+ body, html {
3
+ background-color: #d63384 !important; /* Dark Pink */
4
+ font-family: "Comic Sans MS", cursive, sans-serif; /* Cute Font */
 
5
  color: white; /* Default text color */
6
+ height: 100%;
7
+ margin: 0;
8
+ display: flex;
9
+ justify-content: center;
10
+ align-items: center;
11
  }
12
 
13
+ /* Centered Box - Lighter Pink with White Border */
14
  .container-box {
15
  background-color: #f78fb3 !important; /* Lighter Pink */
16
+ border: 4px solid white !important; /* White Border */
17
  border-radius: 20px;
18
+ padding: 40px;
19
+ width: 90%;
20
+ max-width: 450px;
21
  text-align: center;
22
+ box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
 
 
23
  }
24
 
25
  /* Title Styling */
26
  .title {
27
  font-size: 36px;
28
  font-weight: bold;
29
+ text-align: center;
30
  margin-bottom: 10px;
31
  }
32
 
33
  /* Description */
34
  .description {
35
  font-size: 16px;
36
+ text-align: center;
37
  margin-bottom: 20px;
38
  }
39
 
40
  /* Input Box - White with Dark Pink Border */
41
  input[type="text"], .gradio-input {
42
  background-color: white !important; /* White Input */
43
+ border: 3px solid #d63384 !important; /* Dark Pink Border */
44
  border-radius: 10px;
45
  padding: 10px;
46
  color: black !important; /* Input text color */
 
48
  width: 80%;
49
  max-width: 300px;
50
  margin: 10px auto;
51
+ display: block;
52
  }
53
 
54
  /* Cute Buttons */
 
61
  transition: all 0.3s ease-in-out;
62
  display: block;
63
  margin: 10px auto;
64
+ border: 3px solid white;
65
  }
66
 
67
  button:hover {
 
76
  font-weight: bold;
77
  padding-top: 10px;
78
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
79
+ text-align: center;
80
  }
81
 
82
+ /* Make Sure Everything is Centered */
83
  .centered {
84
  display: flex;
85
  justify-content: center;
 
90
  /* Responsive Tweaks */
91
  @media (max-width: 768px) {
92
  .container-box {
93
+ width: 90%;
94
  }
95
 
96
  .title {
 
105
  font-size: 18px;
106
  }
107
  }
108
+