-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (105 loc) · 2.82 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Concert+One&family=Dancing+Script:[email protected]&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Dancing+Script:[email protected]&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Sevillana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Dancing+Script:[email protected]&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Lobster&family=Sevillana&display=swap');
.container{
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #F8EDE3;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.text-center{
color: #8D493A;
margin-bottom: 20px;
font-family: 'Lobster';
}
.form-row{
display: flex;
flex-wrap: wrap;
gap: 35px;
}
.form-group{
margin-bottom:15px ;
}
label{
font-weight: bold;
color: #8D493A;
font-family: 'ed garamonda';
}
input.form-control{
border-radius: 14px;
border: 1px solid #D0B8A8;
padding: 10px;
font-size: 16px;
}
.btn {
font-size: 16px !important;
/* font-weight: bold !important; */
font-family: 'ed garamonda' !important;
}
.btn-primary {
background-color: #8D493A !important;
border-color: #D0B8A8 !important;
transition: background-color 0.3s ease !important;
}
.btn-primary:hover {
background-color: #DCA47C !important;
}
@media (max-width: 576px) {
.form-row {
flex-direction: column;
}
.form-group {
width: 100%;
}
}
.table {
width: 100%;
margin-bottom: 20px;
color: #8D493A ;
overflow: hidden ;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.table th,td{
padding: 10px ;
vertical-align: middle;
}
.table thead th{
background-color: #8D493A ;
font-family: 'ed garmonda';
color: #F8EDE3;
text-align: left;
}
.table-striped tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
.table {
display: block;
overflow-x: auto;
white-space: nowrap;
}
}
.table th{
position: sticky;
top: 0;
background-color: #D0B8A8;
}
.table td {
text-align: right;
padding-left: 50%;
position: relative;
}
.table td::before {
content: attr(data-label);
position: absolute;
left: 0;
width: 50%;
padding-left: 1rem;
font-weight: bold;
text-align: left;
background-color: #f8f9fa;
}