-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
142 lines (120 loc) · 1.78 KB
/
Copy pathstyle.css
File metadata and controls
142 lines (120 loc) · 1.78 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body
{
width: 600px;
}
.center
{
margin-left: auto;
margin-right: auto;
}
.float-left
{
float: left;
}
.float-right
{
float: right;
}
.fclear-left
{
float: left;
clear: left;
}
.fclear-right
{
float: right;
clear: right;
}
.metro
{
padding: 1px;
color: black;
font-family: Segoe UI, sans-serif;
text-shadow: 0 0 0;
}
.title
{
padding-left: 5px;
font-size: 1.5em;
}
.attendees
{
padding-top: 23px;
padding-right: 7px;
font-size: 1.5em;
}
.time
{
padding-right: 10px;
font-size: 1.5em;
}
.summary
{
padding-left: 5px;
font-size: 0.85em;
}
div.button
{
margin: 2px;
}
div.metro-close
{
height: 90px;
width: 90px;
border: solid 5px #AAAAAA;
background-color: #AAAAAA;
}
div.metro-open
{
height: 97px;
width: 90px;
border: solid 5px orange;
border-bottom: 0px;
margin-bottom: 0px;
}
div.metro-attending
{
border: solid 5px green;
}
div.detail
{
height: 200px;
width: 308px;
margin: 2px;
background-color: orange;
margin-top: 0px;
position: relative;
}
div.check-mark
{
height: 30px;
width: 60px;
background-color: green;
position: absolute;
top: 155px; /* Depends on div.detail height detail.h - this.h - spacing*/
left: 15px;
}
/*************/
/* CheckMark */
/*************/
#check:after
{
/*Add another block-level blank space*/
content:"\00a0";
display:block;
/*Make it a small rectangle so the border will create an L-shape*/
width: 9px;
height: 18px;
/*Add a white border on the bottom and left, creating that 'L' */
border: solid green;
border-width: 0 6px 6px 0;
/*Position it on top of the circle*/
/*position:absolute;*/
/*left: 28px;*/
/*top: 40%;*/
/*margin-top: -4px;*/
/*Rotate the L 45 degrees to turn it into a checkmark*/
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
}