-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
executable file
·175 lines (162 loc) · 2.79 KB
/
style2.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');
* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
font-family: sans-serif;
}
body {
background: #998499;
}
li,a,button {
font-family: "Montserrat",sans-serif;
font-weight: 500;
color: #0f2453;
text-decoration:none ;
}
header {
display: flex;
justify-content: flex-end;
align-items: center;
padding: 30px 10%;
background: #0f2453;
width: 100%;
position: fixed;
top: 0;
/* margin: 20px; */
}
button{
/* padding: 9px 25px; */
background-color: rgba(0, 136,169,1);
border: none;
border-radius: 50px;
cursor: pointer;
transition: 0.3s ease 0s;
/* width: 50px; */
}
select{
width: 70%;
padding: 9px 25px;
background-color: white;
border-color: 1px solid #0f2543;
border-radius: 400px;
cursor: pointer;
transition: 0.3s ease 0s;
}
button:hover{
background-color:#ffce14;
}
section.bus{
margin-top: 50px;
position: relative;
top: 30px;
/* background-color: red; */
}
/* .for-header {
position: fixed;
top: 0;
} */
body{
margin: 0px;
background-size: cover;
}
.logo{
cursor: pointer;
margin-right: auto;
font-size: 25px;
color:#ffce14 ;
}
.nav_links {
list-style: none;
}
.nav_links li{
display: inline;
padding: 0px 20px;
}
.nav_links li a{
transition: all 250ms ease-in;
color: white;
}
.nav_links li a:hover{
background: #ffce14;
height: 20px;
color: black;
}
.container-bus{
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr;
grid-gap: 5px;
border: 2px solid #0f2543;
padding: 10px;
border-radius: 10px;
max-width: 97%;
margin: auto;
}
button, select{
width: 100%;
}
button{
background-color: #0f2543;
color: white;
}
.bus{
color: #0f2543;
}
div.gradient {
position: relative;
left: 15%;
width: 70%;
height: 10%;
}
div.gradient .text {
padding-top: 100px;
padding-bottom: 20px;
margin-bottom: 40px;
text-align: center;
}
div.gradient .text h2 {
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
div.bus a{
background-color: #0f2543;
color: white;
border: 2px solid #0f2543;
padding: 10px;
border-radius: 10px;
max-width: 97%;
margin: auto;
overflow: hidden;
position: relative;
top: 10px;
}
form.container-bus {
width: max-content;
}
form.container-bus *{
width: max-content;
}
div.bus {
width: max-content;
}
dvi.title {
position: relative;
bottom: 0;
}
table.seat-table {
position: relative;
top: 10%;
left: 40%;
bottom: 5px;
}
table.seat-table #clear_seat, table.seat-table #danger{
background-color: #a31313;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 300;
color: #f5deb5;
}
table.seat-table #clear_seat:hover, table.seat-table #danger:hover {
background-color: #d83232;
}