-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (70 loc) · 1.33 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color:rgb(19, 251, 208)
}
.head {
margin-top: 1rem;
}
.box {
display: flex;
align-items: center;
justify-content: center;
margin-top: 3rem;
}
.form {
display: flex;
align-items: center;
flex-direction: column;
background-color: rgb(175, 174, 174);
width: 600px;
height: 500px;
box-shadow: 2px 4px 10px gray;
border: 1px solid black;
border-radius: 20px;
padding: 20px;
}
.input {
padding: 10px 15px;
border: 2px solid rgba(0, 0, 0, 0.4);
font-size: 18px;
outline: none;
border-radius: 10px;
background-color: rgba(111, 73, 73, 0.02);
}
label {
font-size: 18px;
letter-spacing: 1.4px;
}
.tableForm {
margin-top: 10px;
}
.btn {
background-color: rgb(200, 206, 25);
color: white;
padding: 10px 20px;
font-size: large;
font-weight: 600;
border-radius: 10px;
}
input:invalid:focus {
border: 2px solid red;
}
.table {
background-color: rgb(73, 73, 239);
border: 2px solid black;
margin: 40px auto;
}
.td,
.th {
padding: 10px;
text-align: center;
}
.subHead {
text-align: center;
margin-top: 2rem;
}