-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.css
102 lines (85 loc) · 1.83 KB
/
challenge.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
h1{
color: black;
text-align: center;
font-style: normal;
font-family: 'Times New Roman';
background-color: aqua;
}
body{font-size: 15pt;
background-color: aqua;
}
h2{color: black;
text-align: center;
}
input[type=text] {
width: 30%;
padding: 12px 12px;
margin: 12px,40px,12px,40px;
box-sizing: border-box;
border: none;
border-radius: 4px;
}
input[type=number] {
width: 30%;
padding: 12px 12px;
margin: 12px,40px,12px,40px;
box-sizing: border-box;
border: none;
border-radius: 4px;
}
input[type=checkbox] {
margin-right: 0px;
margin-left: 90px;
margin-top: 5px;
margin-bottom: 5px;
}
.text-justify-align{ text-align: justify;
margin-top: 4px;
margin-left: 90px;
margin-right:0px;
margin-bottom: 4px;
}
.right-align-text{text-align: right;
margin-top: 4px;
margin-left: 50px;
margin-right:0px;
margin-bottom: 4px;
}
div{color: black;
font-size: 15pt;
text-align: center;
background-color: silver;
margin-left: 40px;
margin-right: 40px;
margin-top: 40px;
margin-bottom: 40px;
padding-left: 50px;
padding-right: 50px;
padding-top: 30px;
padding-bottom: 30px;
}
select {
width: 30%;
padding: 12px 16px;
border: none;
border-radius: 4px;
background-color: white;
}
textarea {
width: 30%;
height: 150px;
padding: 20px;
box-sizing: border-box;
border: 2px solid black;
border-radius: 4px;
background-color: white;
}
input[type=submit]{
background-color: green;
border: none;
color: white;
padding: 10px 12px;
text-decoration: none;
margin: 4px 50px;
cursor: pointer;
}