-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (52 loc) · 996 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
*{
font-family: 'Poppins', sans-serif;
}
/* Style buttons */
.btn {
background-color: DodgerBlue;
border: none;
color: white;
padding: 12px 30px;
cursor: pointer;
font-size: 20px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: RoyalBlue;
}
code{
font-family: Consolas, "Courier New";
background-color: #f1f1f1;
padding: 4px;
font-size: 105%;
}
body{
background-color : rgb(17, 9, 26) ;
margin : 20px;
font-family: Comic Sans MS, Comic Sans, cursive
}
h1{
color : rgb(255, 255, 255);
font-weight: bold ;
text-align: center ;
font-size : 500% ;
}
h4{
color : rgb(80, 0, 0);
font-weight: bold ;
text-align: center ;
font-size : 500% ;}
h2{
color : green ;
font-size : 175% ;
}
p{
color : rgb(255, 0, 43) ;
font-size : 12px ;
margin-left : 30px ;
}
h3{
color : yellow ;
font-size : 130% ;
}