-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (90 loc) · 1.55 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
* {
box-sizing: border-box;
}
body {
font-family: Segoe UI;
}
.content {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
text-align: left;
}
.warning-sign {
background-color: red;
color: white;
border-radius: 5px;
padding: 10px 20px;
display: none;
}
.content-form {
margin-top: 10px;
}
label {
letter-spacing: 0.3px;
}
table {
letter-spacing: 0.8px;
width: 100%;
}
input[type="text"] {
letter-spacing: 0.8px;
padding: 10px 20px;
background-color: #ebeced;
color: black;
border-radius: 6px;
border: none;
transition: background-color 0.3s;
width: 100%;
font-size: 14px;
margin-bottom: 10px;
}
input[type="number"] {
letter-spacing: 0.8px;
padding: 10px 20px;
background-color: #ebeced;
color: black;
border-radius: 6px;
border: none;
transition: background-color 0.3s;
width: 100%;
font-size: 14px;
margin-bottom: 10px;
}
input:focus {
outline: none;
background-color: #d9dadb;
}
button {
width: 18.5em;
margin-top: 5px;
border-radius: 6px;
background-color: #007BFF;
color: white;
padding: 10px 20px;
border: none;
font-size: 15px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover{
background-color: #4CAF50;
color: white;
}
img {
display: none;
}
@media only screen and (max-width: 600px) {
input[type="number"] {
width: 100%;
}
input[type="text"] {
width: 100%;
}
button {
width: 100%;
}
table {
width: 100%;
}
}