-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (48 loc) · 980 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
*{
margin: 0;
padding: 0;
}
body{
background-color: rgb(247, 231, 208);
width: 100%;
height: 100%;
}
.content {
background-color: rgb(247, 243, 243);
border-radius: 10px;
width: 80%;
margin: 0 auto;
height: 500px;
margin :5rem;
padding: 2rem;
}
.heading{
background-color: rgb(195, 110, 5);
color: rgb(13, 12, 10);
min-height: 80px;
border-radius: 5px;
box-shadow: 2px -5px 98px 3px rgba(171, 147, 147, 0.75);
}
.heading h1{
text-align: center;
padding: 1.2rem;
font-family:'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, ;
color: rgb(32, 26, 18);
}
.spacing{
margin: 1rem;
padding: 2rem;
font-family:'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, ;
}
.btnBox{
text-align: center;
width: auto;
}
.btn{
width: 10%;
height: 30px;
margin: 5px;
border: none;
background-color: rgb(173, 96, 3);
border-radius: 10px;
}