-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterview.css
More file actions
68 lines (67 loc) · 1.21 KB
/
interview.css
File metadata and controls
68 lines (67 loc) · 1.21 KB
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
body{
background-color:rgb(205, 243, 245);
}
.headline{
font-size:35px;font-weight:bold;
margin-bottom:10px;
text-align:center;
}
.menu{
display: flex;
justify-content: flex-end;
background-color: aliceblue ;
}
.SideMenu{
flex: none;width: 70px;margin-left: 10px;
border: 1px solid black;
text-align: center;
cursor: pointer;
}
.frame{
display:flex;
justify-content:center;
flex-wrap: wrap;
}
.entity{
border: 1px solid black;
flex: none;width: 30%;margin: 10px;
display: flex;
flex-direction: column;
}
.question{
background-color: beige;
padding: 10px;
/* height: 40px; */
display: flex;
flex-direction: column;
/* 將問題內容垂直置中 */
align-items: center;
/* 將問題內容水平居中 */
justify-content: center;
/* 將內容文字水平居中 */
text-align: center;
}
.ans{
background-color: #ffcccc;
text-align: center;
padding:10px;
text-align: left;
flex:1;
}
.keyword{
color:red;
font-weight: bold;
}
.emoji{
font-size:20px;
}
@media (max-width:1250px){
.entity{
width: 45%;
}
}
@media (max-width:500px){
.entity{
width: 90%;
}
}