-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOME.CSS
66 lines (59 loc) · 1.11 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
body
{
margin: 0;
background: linear-gradient(to right bottom , rgb(255, 74, 101) , rgb(179, 0, 255));
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
font-family: 'Courier New', Courier, monospace;
}
.container
{
background-color: rgb(255, 255, 255);
padding: 25px;
display: flex;
flex-direction: column;
border-radius: 5px;
box-shadow: 0 2px 2px 2px rgb(255, 0, 0);
}
h1
{
font-size: 30px;
font-weight: bold;
text-align: center;
}
.input
{
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
background-color: rgb(247, 251, 254);
margin: 10px;
}
.btn
{
background: linear-gradient(to right , red , purple);
border: none;
padding: 10px 20px;
border-radius: 5px;
margin: 10px;
font-weight: bold;
color: white;
font-size: 20px;
cursor: pointer;
}
.info-text
{
font-size: 20px;
font-weight: bold;
}
h6
{
font-weight: bold;
text-align: center;
}
.akashnegi
{
text-decoration: underline;
}