-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 1.59 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.heading {
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
text-decoration: underline;
font-size: 40px;
color: whitesmoke;
background-color: purple;
}
h2 {
text-decoration: underline;
margin-top: 5px;
font-size: 32px;
background-color: lightblue;
margin-bottom: 10px;
}
h6 {
font-size: 16px;
}
.maincontainer {
width: 1800px;
margin: 0 auto;
padding: 0 auto;
border: 2px solid black;
border-radius: 20px;
}
.container {
min-height: 300px;
width: 1600px;
border: 1px solid black;
margin: 0 auto;
padding: 20px;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 10px;
position: relative;
}
.image {
height: 200px;
position: absolute;
top: 25%;
right: 8%;
}
.container h6 {
margin-top: 10px;
font-size: 20px;
}
.container2 {
width: 1600px;
min-height: 250px;
border: 1px solid black;
margin: 0 auto;
padding: 20px;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 10px;
}
.container2 li {
margin-top: 10px;
margin-left: 40px;
font-size: 20px;
}
.container3 {
width: 1600px;
min-height: 300px;
border: 1px solid black;
margin: 0 auto;
padding: 20px;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 10px;
font-size: 20px;
}
.container3 input {
margin-top: 10px;
font-size: 20px;
}
.submit {
background-color: green;
padding: 10px 30px;
}
.reset {
background-color: red;
padding: 10px 30px;
}
input[type=checkbox]{
accent-color: #00ff40;
margin-left: 20px;
}
input[type=radio]{
accent-color: yellow;
margin-left: 20px;
}
input[type=text]{
margin: 2px;
padding: 5px;
}