-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAI_Style.css
82 lines (74 loc) · 1.25 KB
/
AI_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
@import url('https://fonts.googleapis.com/scc2?family=DoHyeon&display=swap');
body{
padding:0;
margin:0;
font-family:'Do Hyeon', sans-serif;
color: #35465d;
}
.header{
padding: 10px 0;
background-color:white;
}
h1, h3{
margin-top: 0;
margin-bottom: 10px;
text-align: center;
}
.container{
background-color:#f6f7fa;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
min-width:350px;
max-width:650px;
min-height:400px;
padding: 20px 0;
margin: 0 auto;
border: 1px solid lightgray;
border-radius: 10px;
}
.area{
background-color:white;
width:60%;
min-width:300px;
max-width:600px;
border:2px dashed steelblue;
border-radius:10px;
margin:0 auto;
padding:20px;
text-align:center;
}
#upload-area{
cursor:pointer;
}
#retry-area{
cursor:pointer;
margin-top:20px;
}
#upload-area:hover,
#retry-area:hover{
background-color:aliceblue;
}
.guide-image{
font-size:120px;
}
#upload-image{
width:55%;
max-width:540px;
}
/*디스커스 댓글 영역 스타일 적용*/
#disqus_thread{
background-color: #f6f7fa;
max-width:650px;
box-sizing:border-box;
padding:25px;
margin: 0 auto;
margin-top:15px;
border:1px solid lightgray;
border-radius:10px
}
/*SNS공유 영역 스타일 적용*/
#share-area{
margin-top:20px;
}