Joey889 commited on
Commit
a66af27
·
verified ·
1 Parent(s): 623ba33

Create static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +32 -0
static/style.css ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: "Microsoft JhengHei", sans-serif;
3
+ background-color: #fff5e6;
4
+ text-align: center;
5
+ padding: 40px;
6
+ }
7
+
8
+ h1 {
9
+ color: #ff6600;
10
+ font-size: 36px;
11
+ }
12
+
13
+ button {
14
+ margin: 10px;
15
+ padding: 10px 20px;
16
+ font-size: 18px;
17
+ border: none;
18
+ background-color: #ffd966;
19
+ border-radius: 8px;
20
+ cursor: pointer;
21
+ }
22
+
23
+ button:hover {
24
+ background-color: #ff9900;
25
+ }
26
+
27
+ .story {
28
+ margin-top: 30px;
29
+ font-size: 20px;
30
+ color: #333;
31
+ min-height: 80px;
32
+ }