-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauditroom.css
91 lines (75 loc) · 1.27 KB
/
auditroom.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.audit {
margin: 0% 28% 0% 28%;
border-radius: 5px;
height: 100vh;
}
body {
text-align: center;overflow: hidden;
}
.line {
width: 50%;
padding: 8px;
}
.stats {
background-color: whitesmoke;
display: flex;
flex-direction: row;
width: inherit;
height: 15%;
justify-content: space-evenly;
border-radius: 8px;
}
.left{
text-align: left;
}
.right {
text-align: right;
}
.llist li{
list-style-type: none;
}
.rlist li{
list-style-type: none;
}
.show_audit {
border-radius: 5px;
background-color: whitesmoke;
padding: 8px;
height: 100%;
overflow: scroll;
}
.card {
display: flex;
flex-direction: row;
align-items: center;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
width: 45%;
height: 10%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-size: 12px;
margin-bottom: 5%;
background-color:aquamarine;
}
.card img {
width: 50%;
margin-right: 10px;
border-radius: 5px;
}
.card .text {
width: 50%;
}
.card h2 {
margin-top: 0;
font-size: 1.5em;
}
.card p {
margin-bottom: 0;
font-size: 1.2em;
line-height: 1.5;
}
#toRight {
float: right;
background-color: lightcoral;
}