-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (46 loc) · 702 Bytes
/
style.css
File metadata and controls
55 lines (46 loc) · 702 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
#x {
display: inline-block;
width: auto;
}
.x {
background-color: rgba(255,255,2,.3);
}
.x-left {
float: left;
display: inline-block;
margin-right: 4px;
}
.x-right {
float: right;
display: inline-block;
margin-left: 4px;
}
.x-mid {
display: inline-block;
margin: auto;
}
.shadow {
text-shadow: 1px 2px 3px black;
color: white;
}
.box {
font-family: 'helvetica neue', helvetica, sans-serif;
text-align: center;
padding: 4px 8px;
margin: 12px;
border-width: 2px;
border-style: solid;
border-radius: 12px;
}
.first {
border-color: black;
background: red;
}
.second {
border-color: black;
background: green;
}
.third {
border-color: black;
background: blue;
}