-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweeklykitten.css
More file actions
63 lines (59 loc) · 948 Bytes
/
weeklykitten.css
File metadata and controls
63 lines (59 loc) · 948 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Name: Quoc Phong Tran
Course: CST8285
Lab section: 321
Professor: Hala Own
File: weeklykitten.css
Date Created: November 08, 2024
Description: CSS styling for a subscription form, including layout, input styles, button designs, and error highlights. */
* {
margin: 0;
padding: 0;
}
body {
padding: 20px 60px;
font-family: sans-serif;
font-size: 16px;
}
.textfield {
display: flex;
flex-direction: column;
gap: 10px;
}
h1,
hr {
margin: 20px 0;
font-size: 3em;
}
input {
padding: 5px;
}
.warning {
color: red;
margin-bottom: 3px;
font-size: 14px;
}
.sign-up {
background-color: blue;
color: white;
padding: 5px;
border-radius: 4px;
border: 0;
}
.reset {
background-color: red;
color: white;
padding: 5px;
border-radius: 4px;
border: 0;
}
.error-input-highlight {
border: 2px solid red;
}
.checkbox {
display: flex;
align-items: center;
gap: 10px;
}
.checkbox p {
padding-left: 15px;
}