-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcss2.css
103 lines (87 loc) · 1.47 KB
/
css2.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body
{
margin-top: 10px;
margin-bottom: 10px;
margin-right: 10px;
margin-left: 20px;
background-color: gray ;
padding: 25px;
border: 10px double green;
background-position: top left;
background-size: 15%
}
h1{
color: black;
font-weight: bold;
font-size: 20px;
}
label
{
font-size: 20px;
color:white;
}
input[type=text]
{
width: 60%;
padding: 10px;
margin: 8px 10px;
font-size: 14px;
border: 5px solid black;
border-radius: 50px;
background-color: white;
color: black;
}
input[type=email]
{
width: 60%;
padding: 10px;
margin: 8px 10px;
font-size: 14px;
border: 5px solid black;
border-radius: 50px;
background-color: white;
color: black;
}
input[type=submit] {
color: white
margin-left: 100px;
font-size: 25px;
border-radius: 20px;
cursor: pointer;
}
textarea {
width: 70%;
height: 100px;
padding: 12px 20px;
margin-left: 80px;
color : white;
font-size: 14px;
border: 2px solid red;
border-radius: 4px;
background-color: lightblue;
}
select {
margin: 40px;
width: 90%;
padding: 10px 10px;
font-size: 17px;
background-color: white;
}
input[type=radio]
{
margin-left: 100px;
height: 30px;
width: 30px;
}
input[type=checkbox]
{
margin-left: 50px;
height: 30px;
width: 30px;
}
input[type=file]
{
margin-left: 40px;
color : green;
font-size: 10px white;
}