-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsend_page.css
More file actions
122 lines (102 loc) · 1.8 KB
/
send_page.css
File metadata and controls
122 lines (102 loc) · 1.8 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@font-face {
font-family: 'NanumSquareRound';
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff') format('woff');
}
/* 공통 스타일 */
body {
margin: 0px;
padding: 0px;
background-color: #E6E6E6;
font-family: 'NanumSquareRound';
}
a {
text-decoration-line: none;
color: white;
}
.le {
width: 50%;
margin: 10px;
box-sizing: border-box;
text-align: left;
display: flex;
align-items: center;
justify-content: left;
}
/* 로고 스타일 */
.logo {
display: inline-block;
padding: 10px;
}
.logoimg {
width: 80px;
height: 80px;
}
/* 문구 스타일 */
.tagline {
display: inline-block;
color: #000;
text-align: center;
font-size: 25px;
}
.main {
display: flex;
flex-direction: column;
height: 800px;
margin: 50px;
margin-left: 100px;
margin-right: 200px;
}
.post {
font-weight: bolder;
font-size: xx-large;
margin-bottom: 20px;
}
.up {
display: flex;
justify-content: space-between;
}
.button {
text-align: right;
}
.setting {
background-color: #9b47a5;
border: none;
color: #fff;
padding: 10px;
border-radius: 5px;
}
.total {
font-size: large;
margin-top: 20px;
}
.box {
display: flex;
align-items: center;
justify-content: center;
height: 50%;
width: 100%;
border: 1px solid #FFFFFF;
background-color: #FFFFFF;
border-radius: 0px;
margin-top: 20px;
}
table {
font-size: 20px;
width: 100%;
margin-top: -200px;
}
th {
padding-bottom: 30px;
}
.back {
display: flex;
justify-content: right;
}
.back a {
background-color: rgb(111, 111, 111);
color: #fff;
padding: 10px 20px;
border-radius: 20px;
font-size: 20px;
margin-top: 25px;
}