-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpseudoclasses1.css
75 lines (57 loc) · 1.13 KB
/
pseudoclasses1.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
body {
font-family: 'Times New Roman', Times, serif;
background-color: lightblue;
text-align: center;
font-size: x-large;
}
form {
background-color: white;
width: 800px;
font-size: x-large;
margin-left: auto;
margin-right: auto;
height:fit-content;
border-radius: 8px;
border: 1px solid gray;
}
.input-item {
display: block;
font-size: x-large;
margin-left: auto;
margin-right: auto;
margin-top: 40px;
margin-bottom: 40px;
padding: 15px;
border-radius: 8px;
border: 1px solid gray;
width: 60%;
}
#btn-submit {
background-color: rgba(0, 0, 255, 0.2);
margin-top: 50px;
margin-bottom: 50px;
padding: 8px;
font-size: x-large;
}
#btn-submit:hover {
cursor: pointer;
background-color: blue;
}
.input-item:required:focus {
background-color: lightcoral;
}
.input-item:disabled {
background-color:lightskyblue;
}
.input-item:disabled:hover {
cursor: not-allowed;
}
.input-item:focus {
background-color: lightblue;
}
#btn-checkbox {
display: inline;
margin-top: 40px;
margin-bottom: 40px;
padding: 15px;
}