-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion.css
68 lines (59 loc) · 1.2 KB
/
Question.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
.Question {
width: 1550px;
margin-top: 20px;
padding-right: 10px;
padding-bottom: 10px;
padding-top: 10px;
margin-left: 0px;
text-align: left;
}
.Feedback {
background-color: rgb(76, 48, 80);
margin-bottom: 10px;
margin-left: 0px;
display: block;
}
.class {
font-weight: bold;
display: inline-block;
margin-top: 10px;
}
.Title {
display: inline-block;
margin-top: 10px;
padding: 10px;
width: 92%;
margin-left: 20px;
margin-right: 10px;
}
.Description {
display: inline-block;
width: 95%;
height: 200px;
margin-left: 10px;
margin-right: 50px;
}
.Tags {
display: inline-block;
margin-top: 10px;
padding: 10px;
width: 92%;
margin-left: 20px;
margin-right: 10px;
}
.post {
margin-top: 15px;
padding: 15px;
text-align: center;
display: block;
width: 7%;
background-color: rgb(86, 55, 91);
color: black;
font-size: 18px;
margin-left: 750px;
transition: background-color 0.3s, color 0.3s;
}
.post:hover {
background-color: #333;
color: white;
}