-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
80 lines (77 loc) · 1.35 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@charset "utf-8";
body{
background: linear-gradient(to left, #0fb0f3 0%, #442ac0 100%);
text-align: center;
direction: rtl;
}
#main{
width: 60%;
height: auto;
margin: 40px auto;
background-color: #fff;
padding: 25px;
border:none;
border-radius: 30px;
}
h1{
color: #2a6dc0;
text-align: center;
font-size: 45px;
}
input , textarea{
display: block;
margin: 10px auto;
}
input[type="text"] {
width: 200px;
height: 30px;
border: none;
}
input[type="email"]{
width: 200px;
height: 30px;
border: none;
}
input[type="text"]:focus{
border: 2px solid #10b9ff;
border-radius: 5px;
}
input[type="email"]:focus{
border: 2px solid #10b9ff;
border-radius: 5px;
}
input[type="submit"]{
display: inline;
width: 230px;
padding: 15px 0;
border: none;
color: #fff;
font-weight:bold;
border-radius: 8px;
background-color: #00c701;
margin: 22px 5px;
}
input[type="submit"]:hover{
opacity: .8;
}
textarea{
border: none;
}
textarea:focus{
border: 2px solid #10b9ff;
border-radius: 5px;
}
input[type="reset"]{
display: inline;
width: 230px;
padding: 15px 0;
border: none;
color: #fff;
font-weight:bold;
border-radius: 8px;
background-color: #0fb0f3;
margin: 22px 5px;
}
input[type="reset"]:hover{
opacity: .8;
}