-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (35 loc) · 683 Bytes
/
Copy pathstyle.css
File metadata and controls
43 lines (35 loc) · 683 Bytes
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
.myform{
padding: 20px;
}
/*label -> element/tag*/
.myform label{
display:inline;
}
/*both class*/
.myform .form-group{
padding-bottom: 15px;
}
/*input -> element/tag*/
.myform input{
padding: 8px;
width:50%;
}
/*input with attribute as text*/
.myform input[type="text"] {
padding: 8px;
width:50%;
}
#radiobutton {
padding:10x;
}
#behave-inline{
display:inline;
}
/*input with attribute as submit*/
.myform input[type="submit"] {
background-color: grey;
color:black;
padding: 10px;
border:none;
width:50%;
}