-
Notifications
You must be signed in to change notification settings - Fork 0
/
univ.css
101 lines (87 loc) · 1.45 KB
/
univ.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
body {
text-align: center;
margin: 0px;
font-size: 24px;
background-image: url(bg.png);
color: #273869;
min-width: 372px;
user-select: none;
}
div {
display: inline-block;
float: left;
padding: 4px 9px;
margin: 1px;
}
img {
display: block;
}
article {
margin-left: 40px;
width: calc(100% - 50px);
max-width: 812px; max-height: 803px;
display: inline-block;
background: #dddddd;
overflow: hidden;
}
footer {
margin-left: 40px;
color: white;
}
.hideScrIn {
width: calc(100% + 16px) !important;
height: 100% !important;
overflow-x: hidden;
overflow-y: scroll;
}
.hideScrOut {
width: 100%;
overflow: hidden;
}
#kodex_form{
background: rgba(0, 0, 0, 0.5);
padding-bottom: 10px;
}
#logo {
max-width: 550px;
margin-left: 40px;
display: inline-block;
}
#kodex_srch {
font-family: "NanumSquareB", "맑은 고딕";
width: calc(100% - 55px);
max-width: 700px;
text-align: left;
margin-left: 40px;
font-size: 21px;
}
#kodex_exmpl {
position: absolute;
top: 100%;
left: 0px;
z-index: 1000;
display: block;
float: left;
min-width: 160px;
max-height: 260px;
overflow-y: auto;
font-size: 18px;
padding: 5px;
margin: 2px 0 0;
color: #373a3c;
text-align: left;
list-style: none;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0,0,0,0.15);
border-radius: .2rem;
}
#kodex_exmpl li {
list-style: none;
padding: 3px;
cursor: pointer;
background: white;
}
#kodex_exmpl li:hover {
background: #e3e4ee;
}