-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (91 loc) · 1.53 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (91 loc) · 1.53 KB
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
99
100
101
102
103
104
105
106
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #fff;
display: grid;
}
h1 {
text-align: center;
color: #333;
}
.header
{
align-content: center;
font-size: xx-large;
font-family: 'Times New Roman', Times, serif;
border-color: cyan;
box-shadow: #ddd;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-color: black;
}
form#orderForm {
display: flex;
justify-content: space-between;
}
input {
height: 19px;
}
select#serviceType {
height: 25px;
}
h2 {
transform: translateX(460px);
padding-bottom: 32px;
}
.btnsub {
transform: translateY(-8px);
}
th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
tr:hover {
background-color: #f1f1f1;
}
button {
padding: 8px 12px;
margin: 5px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
display: grid;
}
button:hover {
background-color: #45a049;
color: white;
}
.LAF{
background-color: #4CAF50;
width: auto;
&:hover{
background-color: #31cc36;
}
}
button.LAF {
transform: translateX(44em);
}
@media (max-width: 600px) {
table {
font-size: 14px;
}
th, td {
padding: 10px;
}
button {
font-size: 12px;
padding: 6px 10px;
}
}