3v324v23 commited on
Commit
79d5d2b
·
1 Parent(s): 94cdde2

style: apply minimal white theme with table borders

Browse files
Files changed (2) hide show
  1. public/css/style.css +27 -1
  2. views/index.ejs +1 -1
public/css/style.css CHANGED
@@ -1 +1,27 @@
1
- /* CSS Removed */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: sans-serif;
3
+ background-color: #fff;
4
+ color: #000;
5
+ padding: 20px;
6
+ }
7
+
8
+ table {
9
+ width: 100%;
10
+ border-collapse: collapse;
11
+ margin-top: 20px;
12
+ margin-bottom: 20px;
13
+ }
14
+
15
+ table, th, td {
16
+ border: 1px solid #000;
17
+ }
18
+
19
+ th, td {
20
+ padding: 10px;
21
+ text-align: left;
22
+ }
23
+
24
+ input, button {
25
+ padding: 8px;
26
+ margin: 5px 0;
27
+ }
views/index.ejs CHANGED
@@ -2,7 +2,7 @@
2
  <html>
3
  <head>
4
  <title>Student Personality Analysis</title>
5
- <!-- CSS Removed -->
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
  </head>
8
  <body>
 
2
  <html>
3
  <head>
4
  <title>Student Personality Analysis</title>
5
+ <link rel="stylesheet" href="/css/style.css" />
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
  </head>
8
  <body>