forked from mohammedyusuf380/blog-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
52 lines (52 loc) · 906 Bytes
/
style3.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
*{
padding: 0px;
margin: 0px;
color:black;
box-sizing: border-box;
font-family: arial;
}
/* body{
background-image: url("./images/gradient-dark-blue-futuristic-digital-background.jpg");
background-size:auto ;
} */
.box{
width: 400px;
height: auto;
margin: 0px auto;
background-color: #fff;
}
.inner-box{
padding: 20px;
}
.box h2,h3{
text-align: center;
margin: 5px 0px;
}
#username, #password,#name, #email{
width: 100%;
padding: 10px 0px;
margin: 10px 0px;
border: 2px solid #c0c0c0;
font-weight: 100px;
}
#submit{
background-color: #3B5998;
color: white;
font-size: 16px;
font-weight: bold;
width: 100%;
padding: 10px 0px;
margin: 10px 0px;
border: 2px solid #000000;
cursor: pointer;
}
p{
margin: 5px 0px;
}
.link{
color: #00aced;
}
.forgot{
float: right;
font-weight:bold;
}