SumanDhanu commited on
Commit
da07483
·
verified ·
1 Parent(s): aea1f79

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +40 -0
style.css ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .container {
2
+ max-width: 900px;
3
+ margin: auto;
4
+ padding-top: 1.5rem;
5
+ }
6
+ .header {
7
+ text-align: center;
8
+ margin-bottom: 2rem;
9
+ }
10
+ .header h1 {
11
+ color: #1F6FEB;
12
+ font-size: 2.2rem;
13
+ margin-bottom: 0.5rem;
14
+ }
15
+ .header p {
16
+ font-size: 1.1rem;
17
+ color: #666;
18
+ }
19
+ .article-output {
20
+ border-radius: 8px;
21
+ border: 1px solid #ddd;
22
+ padding: 20px;
23
+ background: white;
24
+ margin-top: 20px;
25
+ }
26
+ .article-output h2 {
27
+ border-bottom: 2px solid #1F6FEB;
28
+ padding-bottom: 8px;
29
+ margin-top: 25px;
30
+ color: #1F6FEB;
31
+ }
32
+ .search-options {
33
+ display: flex;
34
+ gap: 10px;
35
+ margin-bottom: 15px;
36
+ }
37
+ .generate-btn {
38
+ background-color: #1F6FEB !important;
39
+ color: white !important;
40
+ }