forked from haterzlin/character-sheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
42 lines (35 loc) · 789 Bytes
/
index.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
html, body {
margin: 5px;
padding: 0;
}
h2 {margin:0;}
h3 {margin:0;}
.clear {clear:both; float:none;}
.AttributeClass {
float: left;
padding: 1em;
}
.circle {
width: 0.9em;
height: 0.9em;
cursor: pointer;
background-color: aliceblue;
border: 0.1em solid lightgrey;
display: inline-block;
vertical-align: top;
margin-right: 2px;
border:1px solid #bbb; border-color:#ccc #888 #888 #ccc; border-radius:0.5rem;
background: aliceblue linear-gradient(-30deg, #fff, aliceblue);
}
.circleBlack {
background: black linear-gradient(-215deg, #666, black);
}
.circleGreen {
background: green linear-gradient(-30deg, #ddffdd, green);
}
.circleRed {
background: red linear-gradient(-30deg, #ffdddd, red);
}
.textred {
color: red;
}