ek-id commited on
Commit
0bf6d5e
·
verified ·
1 Parent(s): db0b9ab

Add styles.css

Browse files
Files changed (1) hide show
  1. styles.css +18 -0
styles.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #header {
2
+ text-align: center;
3
+ font-size: 4em;
4
+ font-weight: bold;
5
+ color: #0071C5;
6
+ background: linear-gradient(to right, #0071C5, #00BFFF);
7
+ -webkit-background-clip: text;
8
+ -webkit-text-fill-color: transparent;
9
+ padding: 5px;
10
+ border-radius: 5px;
11
+ margin-bottom: 5px;
12
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
13
+ }
14
+
15
+ .btn {
16
+ background-color: #0071C5;
17
+ color: white;
18
+ }