-
Notifications
You must be signed in to change notification settings - Fork 5
/
last.css
108 lines (92 loc) · 1.7 KB
/
last.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
.header{
background:#8b2845;
width: 100%;
padding-top: 15px;
padding-bottom: 15px;
font-weight: 700;
font-size: 20px;
justify-content: center;
align-items: center;
position: fixed;
color: white;
text-align: center;
display:flex;
}
.header a {
text-decoration: none;
color: white;
margin: 0 15px;
}
.header a:hover{
text-decoration: none;
color: white;
margin: 0 15px;
color: #503838;
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
.last-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.last-content {
text-align: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: white;
}
.last-content img {
max-width: 200px;
margin-bottom: 10px;
}
.last-content h3 {
font-size: 20px;
margin-top: 0;
}
.today-ride {
margin: 20px 0;
font-size: 16px;
}
.textbox {
width: 60px;
height: 20px;
border: 2px solid ;
border-color: #8b2845;
}
.buttons {
display: flex;
justify-content: space-between;
}
.complete-button,
.report-button {
padding: 10px 20px;
background-color: #8b2845;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.report-button {
background-color: #ccc;
}
.complete-button:hover,
.report-button:hover {
background-color: #fff;
color: #8b2845;
}
@media screen and (min-width: 320px) {
.header {
/* 여기에 필요한 스타일을 적용하세요. 예: */
font-size: 18px;
}
.header a {
/* 여기에 필요한 스타일을 적용하세요. 예: */
margin: 0 10px;
}
}