source: Sources/frontend/src/app/question-details/question-details.component.css

Last change on this file was 8423429, checked in by AngelNasev <angel.nasev@…>, 15 months ago

Add backend and frontend projects

  • Property mode set to 100644
File size: 1.0 KB
Line 
1.title {
2 color: #3A98B9;
3}
4
5button {
6 border: none;
7 padding: 5px;
8 height: 50px;
9 border-radius: 5px;
10 background-color: #3A98B9;
11 cursor: pointer;
12 font-weight: normal;
13 font-size: large;
14 color: #FFF1DC;
15}
16
17small {
18 color: gray;
19}
20
21.container {
22 display: flex;
23 flex-direction: column;
24 justify-content: center;
25 margin-left: 200px;
26 margin-right: 200px;
27}
28
29.header {
30 display: flex;
31 justify-content: space-between;
32}
33
34.arrows {
35 display: flex;
36 flex-direction: column;
37 margin-bottom: 0;
38 padding-bottom: 0;
39 margin-right: 5px;
40 color: #3A98B9;
41}
42
43.answer-card {
44 display: flex;
45 justify-content: center;
46 align-items: center;
47}
48
49.answer-card p {
50 background-color: #3A98B9;
51 padding: 10px;
52 width: 100%;
53 border-radius: 10px;
54 padding-top: 25px;
55 padding-bottom: 25px;
56 color: #FFF1DC;
57 font-weight: normal;
58 font-size: large;
59}
60
61.header {
62 margin-top: 10px;
63}
64
65.content {
66 background-color: #ffffff;
67 padding: 10px;
68 border-radius: 10px;
69}
70
71b {
72 color: rgba(51, 64, 136, 0.8);
73}
Note: See TracBrowser for help on using the repository browser.