-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (52 loc) · 865 Bytes
/
styles.css
File metadata and controls
58 lines (52 loc) · 865 Bytes
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
body {
padding:0;
margin:0;
}
header {
background-color:grey;
z-index:10;
position:fixed;
width:100%;
top:0;
left:0;
padding:10px;
}
.wrapper {
margin-top:50px;
display: grid;
grid-gap: 10px;
background-color: #fff;
color: #444;
align-items:start;
z-index:1;
}
.card {
border-radius: 5px;
border-width: 5px;
border-style: solid;
border-color: white;
background-color:white;
padding:5px;
width:1fr-20px;
margin-top:7px;
}
.container {
background-color: #E2E4E6;
border-radius: 5px;
padding: 10px;
font-size: 110%;
min-height:30px;
}
h3 {
margin-top:5px;
margin-bottom:10px;
grid-row:1/2;
border-bottom:2px solid black;
}
#doneMsg {
display:none;
background:red;
padding:2px;
border-radius:3px;
font-weight:bold;
}