-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
90 lines (77 loc) Β· 1.29 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
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
html,
body {
font-family: 'Noto Sans KR', sans-serif !important;
font-size: 12px;
font-weight: 600;
text-align: center;
}
span {
user-select: none;
}
#wrapper {
width: 130px !important;
display: flex;
flex-direction: column;
}
button {
font-family: 'Noto Sans KR', sans-serif;
margin-top: 5px;
border: none;
border-radius: 6px;
background: dodgerblue;
color: white;
font-size: 15px;
font-weight: 500;
padding: 0.3rem 0.6rem;
cursor: pointer;
}
button:hover {
background: rgb(0, 89, 255);
}
#help_wrapper {
text-align: right;
}
#help_bt {
font-size: 11px;
padding: 0.2rem 0.3rem;
background: none;
color: #888;
}
#help_bt:hover {
color: #555;
}
#version {
margin-left: -3px;
font-size: 8px;
font-weight: 500;
font-style: italic;
color: #bbb;
}
a {
text-decoration: none;
color: dodgerblue;
font-size: 15px;
}
a:hover {
color: rgb(0, 89, 255);
text-decoration: underline;
}
#msg {
margin: 40px auto 0px;
width: 500px;
font-size: 12px;
font-weight: 400;
padding: 0.1rem 0.3rem;
color: white;
background: #888;
border-radius: 5px;
}
input {
width: 120px;
font-family: 'Noto Sans KR', sans-serif;
font-size: 11px;
}
hr {
border: 1px solid #ddd;
}