-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
135 lines (116 loc) · 2.83 KB
/
style.css
File metadata and controls
135 lines (116 loc) · 2.83 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
123
124
125
126
127
128
129
130
131
132
133
134
135
/* 폰트 */
@font-face {
font-family: 'GyeonggiTitleM';
src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/GyeonggiTitleM.woff') format('woff');
font-weight: normal;
font-style: normal;
}
body, h1, h2, h3, h4, h5, h6, p, div, span, a, button, input, label, select, textarea {
font-family: 'GyeonggiTitleM', sans-serif;
}
/* 파일업로드 박스 텍스트 변경 */
div[data-testid="stFileUploader"]>section[data-testid="stFileUploaderDropzone"]>button[data-testid="baseButton-secondary"] {
color:white;
}
div[data-testid="stFileUploader"]>section[data-testid="stFileUploaderDropzone"]>button[data-testid="baseButton-secondary"]::after {
content: "파일 선택";
color:black;
display: block;
position: absolute;
font-size: 20px;
}
div[data-testid="stFileUploaderDropzoneInstructions"]>div>span {
visibility:hidden;
}
div[data-testid="stFileUploaderDropzoneInstructions"]>div>span::after {
content:"파일 업로드 하기";
visibility:visible;
display:block;
font-size: 24px;
}
div[data-testid="stFileUploaderDropzoneInstructions"]>div>small {
visibility:hidden;
}
div[data-testid="stFileUploaderDropzoneInstructions"]>div>small::before {
content:"25MB 이하 파일을 올려주세요";
visibility:visible;
display:block;
}
/* 툴바 숨기기 */
div[data-testid="stToolbar"] {
visibility: hidden;
height: 0;
position: fixed;
}
div[data-testid="stDecoration"] {
visibility: hidden;
height: 0;
position: fixed;
}
div[data-testid="stStatusWidget"] {
visibility: hidden;
height: 0;
position: fixed;
}
#MainMenu {
visibility: hidden;
height: 0;
}
header {
visibility: hidden;
height: 0;
}
footer {
visibility: hidden;
height: 0;
}
/* 파일 업로드 박스 */
/*section.st-emotion-cache-rvj4oc.e1b2p2ww15 {*/
/* display: flex;*/
/* justify-content: center;*/
/* align-items: center;*/
/*}*/
@media (max-width: 767px) {
h1 {
font-size: 24px;
text-align: center;
}
h2 {
font-size: 20px;
text-align: center;
}
h3 {
font-size: 16px;
text-align: center;
}
}
/*Devices between 768px and 1024px*/
@media (min-width: 768px) and (max-width: 1024px) {
h1 {
font-size: 36px;
text-align: center;
}
h2 {
font-size: 24px;
text-align: center;
}
h3 {
font-size: 20px;
text-align: center;
}
}
/*Devices larger than 1024px*/
@media (min-width: 1024px) {
h1 {
font-size: 48px;
text-align: center;
}
h2 {
font-size: 32px;
text-align: center;
}
h3 {
font-size: 24px;
text-align: center;
}
}