source: Sources/frontend/src/app/question/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: 654 bytes
Line 
1.card {
2 background-color: #3A98B9;
3 margin: 10px;
4 padding: 10px;
5 border-radius: 10px;
6 color: #FFF1DC;
7 font-weight: normal;
8 font-size: large;
9}
10
11.container {
12 display: flex;
13 flex-direction: column;
14 justify-content: center;
15 margin-left: 200px;
16 margin-right: 200px;
17}
18
19.header {
20 display: flex;
21 justify-content: space-between;
22}
23
24button {
25 background-color: #3A98B9;
26 border: none;
27 padding: 5px 10px 5px 10px;
28 height: 50px;
29 margin: 5px;
30 border-radius: 7px;
31 cursor: pointer;
32 color: #FFF1DC;
33 font-weight: normal;
34 font-size: large;
35}
36
37.buttons {
38 display: flex;
39}
40
41.card:hover {
42 box-shadow: 0 0 2px 2px #E1DDDD;
43}
Note: See TracBrowser for help on using the repository browser.