-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (58 loc) · 1.04 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
html {
height: 100%;
width: 100%;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
}
label {
font-size: 16px;
}
input {
padding: 10px;
margin: 10px 0;
border-radius: 5px;
}
table {
border-collapse: collapse;
margin-top: 30px;
text-align: left;
}
table, table td, table th {
border: 1px solid black;
padding: 8px;
}
#submit {
background-color: #97d1cb;
border: 2px solid black;
border-radius: 30px;
box-shadow: black 4px 4px 0 0;
color: black;
cursor: pointer;
/* display: inline-block; */
width: 270px;
margin-top: 20px;
font-weight: 600;
font-size: 16px;
padding: 0 10px;
line-height: 50px;
text-align: center;
/* user-select: none;
-webkit-user-select: none;
touch-action: manipulation; */
}
#submit:hover {
background-color: lightpink;
}
#submit:active {
box-shadow: black 2px 2px 0 0;
transform: translate(2px, 2px);
}