forked from Srijita-Mandal/fix-your-nums
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexstyle.css
63 lines (53 loc) · 1.04 KB
/
indexstyle.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
63
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
* {
font-family: 'Ubuntu', sans-serif;
}
body{
background-color: #ffeeb7;
display: grid;
}
.header{
padding-left: 15px;
padding-right: 15px;
background-color: #202020;
color: #ffeeb7;
height: 180px;
width: 100%;
text-align: center;
font-size: 28px;
margin-top: -10px;
}
h1{
font-family: 'Satisfy', cursive;
font-weight: lighter;
font-size: 70px;
margin-top: 50px;
}
.panel-body{
background-color: #ffb4a3;
border-radius: 10px;
}
.panel-body:hover{
background-color: #ff947c;
border-radius: 30px;
box-shadow: 0 1.2rem 3rem 0.5rem #414141;
}
.panel{
border-radius: 10px;
}
.panel:hover{
border-radius: 30px;
}
h2{
text-align: center;
padding-top: 70px;
padding-bottom: 70px;
font-size: 35px;
}
#footer{
background-color: #202020;
color: #ffeeb7;
padding: 10px;
padding-left: 20px;
}