-
Notifications
You must be signed in to change notification settings - Fork 0
/
find.html
124 lines (124 loc) · 3.02 KB
/
find.html
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
<!DOCTYPE html>
<html>
<head>
<title>맞춤형 장학 정보 제공 서비스</title>
<link rel="shortcut icon" href="./favicon.ico">
<style>
body {
margin: 0;
padding: 5% 5% 5% 5%;
font-size: 20px;
}
#grad {
list-style-type: none;
vertical-align: middle;
height: 100px;
padding: 0;
}
#grad li {
overflow: auto;
height: 100px;
word-break: keep-all;
margin: 10px 0px 10px 0px;
padding-left: 2.5%;
}
#grad .title {
display: table;
width: 15%;
height: 100px;
text-align: center;
vertical-align: middle;
float: left;
padding: 0em 1em 0em 1em;
border: 1px solid transparent;
border-radius: 10px;
background-color: rgb(148,206,88);
color: white;
}
#grad .title-detail {
color: white;
display: table-cell;
text-align: center;
vertical-align: middle;
}
#grad .detail {
display: table;
width: 60%;
height: 100px;
text-align: center;
vertical-align: middle;
float: left;
padding: 0em 1em 0em 1em;
border: 1px solid transparent;
border-radius: 10px;
}
#grad .detail-detail {
display: table-cell;
text-align: center;
vertical-align: middle;
}
#grad .admit {
display: table;
width: 10%;
height: 50px;
text-align: center;
vertical-align: middle;
float: left;
padding: 0em 1em 0em 1em;
margin: 25px 0px 25px 0px;
border: 0px solid transparent;
border-radius: 10px;
background-color: rgb(148,206,88);
color: white;
}
#grad .admit-detail {
display: table-cell;
text-align: center;
vertical-align: middle;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<div class="inform">
검색하신 조건에 맞는 장학 유형입니다.
<a href="./index.html">다시 검색하기</a>
</div>
<br>
<ul id="grad">
<li>
<div class="title">
<div class="title-detail">공로</div>
</div>
<div class="detail">
<div class="detail-detail">직전학기 학업성적 평점평균이 2.0 이상이고 12학점(7학기 9학점)이상 이수한 자로서 공로가 있다고 인정되는 자</div>
</div>
<div class="admit">
<a href="http://www.skku.edu" class="admit-detail">신청</a>
</div>
</li>
<li>
<div class="title">
<div class="title-detail">학생회 우수 프로그램 장학금</div>
</div>
<div class="detail">
<div class="detail-detail">직전학기 학업성적이 12학점(7학기 9학점)이상 이수하고 평점평균이 2.0 이상인 자 중 학생회 우수문화프로그램 공모에 선정된 자</div>
</div>
<div class="admit">
<a href="http://www.skku.edu" class="admit-detail">신청</a>
</div>
</li>
<li>
<div class="title">
<div class="title-detail">사회봉사 우수 장학금</div>
</div>
<div class="detail">
<div class="detail-detail">직전학기 학업성적이 12학점(7학기 9학점)이상 이수하고 평점평균이 2.0 이상인 자 중 사회봉사 담당 기관장(학생처장)이 추천한 자</div>
</div>
<div class="admit">
<a href="http://www.skku.edu" class="admit-detail">신청</a>
</div>
</li>
</body>
</html>