-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestStyle.css
More file actions
57 lines (52 loc) · 992 Bytes
/
testStyle.css
File metadata and controls
57 lines (52 loc) · 992 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Gamja Flower', cursive;
}
body{
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.content{
width: 100vw;
max-width: 65rem;
height: 100%;
display: flex;
flex-direction: column;
text-align: center;
padding: 0 5vw 0 5vw; /* 왼쪽 오른쪽 5vw만큼 띄워주기 */
}
/* 시작 페이지 */
#start>p{
font-size: 2.5rem;
margin-top:10vh;
}
#start>button{
margin-top: 30vh;
}
/* 질문 페이지 */
#question > #pgrNum{
text-align: left;
margin-top: 3vh;
}
#question > #title{
width: 100%;
height: 20vh;
margin: 10vh 0 10vh 0;
font-size: 1.5rem;
}
#question > button{
height: 8vh;
}
/* 결과 페이지 */
#result > .result-btn{
display: flex;
flex-direction: column;
}
.result-btn button{
font-size: 1.5rem;
}