Newer
Older
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
page-learn-detail {
.fontSize-2{
font-size: 2rem;
}
.main{
background: linear-gradient(to bottom,#89a2cd 0%,#ccd4e3 25%,#e6e8ed 100%);
}
.main-title{
background-color: #617599;
color: #ffffff;
padding: 20px 0px;
text-align: center;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
font-size: 1.6rem;
}
.main-content{
background-color: #fff;
font-size: 1.5rem;
padding: 20px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.content-card{
display: flex;
text-align: center;
padding-bottom: 20px;
}
.flex-1{
flex: 1;
p:first-child{
color: #666666;
margin-bottom: 10px;
}
}
.basic-info{
border: 1px solid #ddd;
border-radius: 5px;
}
.basic-title{
background-color: #f7f7f7;
padding: 10px;
font-weight: bold;
font-size: 1.6rem;
}
.basic-container{
padding: 10px;
p{
margin-bottom: 1rem;
}
}
.basic-question{
display: flex;
.question-left{
flex: 2;
}
.question-right{
flex: 4;
}
}
.submit{
margin-top: 20px;
border: 1px solid #34b4fc;
background-color: #34b4fc;
}
}