-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
66 lines (58 loc) · 1.28 KB
/
home.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
64
65
66
#title{
border: 1px grey;
width: auto;
border-radius: 10px;
height: 100px;
margin: 0 auto;
font-family: comic sans ms;
font-weight: 500;
color: blueviolet;
font-size: 50;
background: linear-gradient(#E4F2B9,#B7E953);
}
#signup{
padding-top: 50px;
padding-bottom: 0px;
width: 600px;
border-radius: 10px;
height: 150px;
margin: 50 auto;
font-family: comic sans ms;
font-weight: 500;
color: blueviolet;
background-color:burlywood;
font-size: 50;
box-shadow: 0px 4px #535aa8;
text-align: center;
transition: font-size 0.3s ease;
}
#signin{
padding-top: 50px;
padding-bottom: 0px;
width: 600px;
border-radius: 10px;
height: 150px;
margin: 50 auto;
font-family: comic sans ms;
font-weight: 500;
color: blueviolet;
background-color:burlywood;
font-size: 50;
box-shadow: 0px 4px #535aa8;
text-align: center;
transition: font-size 0.3s ease;
}
#signup:hover{
font-size: 80px;
font-weight: bold;
color:deepskyblue;
}
#signin:hover{
font-size: 80px;
font-weight: bold;
color:deepskyblue;
}
p{
font-family: fantasy;
color:darkmagenta;
}