-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule.css
More file actions
99 lines (86 loc) · 1.54 KB
/
module.css
File metadata and controls
99 lines (86 loc) · 1.54 KB
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
body {
width: 100%;
height: 100vh;
margin: 0;
background-color: #38cee8;
color: #0d1f2d;
font-family: Tahoma;
font-size: 16px;
}
h1{
margin: 1em auto;
text-align: center;
}
form {
width: 60vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
padding-bottom: 2em;
}
fieldset {
border: none;
padding: 2rem 0;
border-bottom: 3px solid #34252f;
}
fieldset:last-of-type {
border-bottom: none;
}
label {
display: block;
margin: 0.5rem 0;
}
input,
textarea,
select {
margin: 10px 0 0 0;
width: 100%;
min-height: 2em;
}
input, textarea {
background-color: #dbf9f4;
border: 1px solid #dbf9f4;
color: #0d1f2d;
}
input[type="submit"] {
display: block;
width: 60%;
margin: 1em auto;
height: 2em;
font-size: 1.1rem;
background-color: #38cee8;
border-color: #34252f;
min-width: 300px;
}
.frame {
margin-top: 20px;
background-color: #0a5f6e;
padding: 30px;
border-radius: 20px;
}
p {
background-color: #0a5f6e;
padding: 30px;
border-radius: 0 0 10px 10px;
width: 30vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
}
h2 {
background-color: #0a5f6e;
padding: 30px;
width: 30vw;
max-width: 500px;
min-width: 300px;
margin: 0 auto;
height: 10px;
margin-top: 10px;
border-radius: 10px 10px 0 0
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}