source: Sources/frontend/src/app/add-question/add-question.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.2 KB
Line 
1.parent-container {
2 display: flex;
3 flex-direction: column;
4 justify-content: center;
5 margin-left: 400px;
6 margin-right: 400px;
7 margin-top: 100px;
8}
9
10button {
11 background-color: #3A98B9;
12 border: none;
13 padding: 5px;
14 height: 50px;
15 width: 100px;
16 margin: 5px;
17 cursor: pointer;
18 float: right;
19 border-radius: 5px;
20 color: #FFF1DC;
21 font-weight: normal;
22 font-size: large;
23}
24
25.add-question {
26 display: flex;
27 flex-direction: column;
28 justify-content: center;
29}
30
31label {
32 width: 100%;
33 font-weight: bold;
34 font-size: 20px;
35 padding-top: 10px;
36 color: rgba(27, 39, 107, 0.8);
37}
38
39input {
40 width: 100%;
41 height: 30px;
42 margin: none;
43 background-color: rgba(237, 238, 245, 0.8);
44 font-size: 16px;
45 border-radius: 5px;
46}
47
48textarea {
49 width: 100%;
50 height: 180px;
51 margin: none;
52 background-color: rgba(237, 238, 245, 0.8);
53 border-color: rgba(159, 168, 216, 0.5);
54 font-size: 16px;
55 border-radius: 7px;
56}
57
58.btn-div {
59 float: right;
60}
61ng-multiselect-dropdown{
62 width: 97%;
63}
64:host ::ng-deep .multiselect-dropdown .dropdown-btn {
65 width: 97%;
66 background-color: rgba(237, 238, 245, 0.8);
67 font-size: 16px;
68 border-radius: 5px;
69}
70
71.container{
72 padding: 20px;
73 background-color: #ffffff;
74 border-radius: 10px;
75}
Note: See TracBrowser for help on using the repository browser.