-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
182 lines (155 loc) · 3.71 KB
/
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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
h2 /*{color: #92B901;}*/
body #header{
font-family: "Lucida Console", Monaco, monospace;
/*color: #ff6187;*/}
body{/*color: #707070;*/}
ul.circle{
list-style-type:circle;
}
p.address{
margin-left: 20px;
}
#content{
/*font-family: "Courier New", Courier, monospace;*/
font-family: "Lucida Console", Monaco, monospace;
font-size: 1rem;
font-weight: 550;
line-height: 1.5;
}
#menu{
width: auto;
float: right;
margin: 10px;
height: auto;
}
#me1{
width: 100%;
height: 100%;
}
#container{
margin: 20px;
}
.flex {
display: -ms-flexbox;
display: flex;
margin-left: -0.6em;
width: calc(100% + .6em);
flex-wrap: wrap;
transition: all .3s ease
}
.flex > * {
box-sizing: border-box;
flex: 1 1 auto;
padding-left: .6em;
padding-bottom: .6em
}
.flex[class * ="one"] > * , .flex[class * ="two"] > * , .flex[class * ="three"] > * ,
.flex[class * ="four"] > * , .flex[class * ="five"] > * , .flex[class * ="six"] > * ,
.flex[class * ="seven"] > * , .flex[class * ="eight"] > * , .flex[class * ="nine"] > * ,
.flex[class * ="ten"] > * , .flex[class * ="eleven"] > * , .flex[class * ="twelve"] > * {
flex-grow: 0
}
.flex.grow > * {
flex-grow: 1
}
.card, .modal .overlay ~ * {
position: relative;
box-shadow: 0;
border-radius: .2em;
border: 1px solid #ccc;
overflow: hidden;
text-align: left;
background: #fff;
margin-bottom: .6em;
padding: 0;
transition: all .3s ease
}
.hidden.card, .modal .overlay ~ .hidden, :checked + .card, .modal .overlay ~ :checked + * ,
.modal .overlay:checked + * {
font-size: 0;
padding: 0;
margin: 0;
border: 0
}
.card > * , .modal .overlay ~ * > * {
max-width: 100%;
display: block
}
.card > * :last-child, .modal .overlay ~ * > * :last-child {
margin-bottom: 0
}
.card header, .modal .overlay ~ * header, .card section, .modal .overlay ~ * section,
.card > p, .modal .overlay ~ * > p {
padding: .6em .8em
}
.card section, .modal .overlay ~ * section {
padding: .6em .8em 0
}
.card hr, .modal .overlay ~ * hr {
border: none;
height: 1px;
background-color: #eee
}
.card header, .modal .overlay ~ * header {
font-weight: bold;
position: relative;
border-bottom: 1px solid #eee
}
.card header h1, .modal .overlay ~ * header h1, .card header h2, .modal .overlay ~ * header h2,
.card header h3, .modal .overlay ~ * header h3, .card header h4, .modal .overlay ~ * header h4,
.card header h5, .modal .overlay ~ * header h5, .card header h6, .modal .overlay ~ * header h6 {
padding: 0;
margin: 0 2em 0 0;
line-height: 1;
display: inline-block;
vertical-align: text-bottom
}
.card header:last-child, .modal .overlay ~ * header:last-child {
border-bottom: 0
}
.card footer, .modal .overlay ~ * footer {
padding: .8em
}
.card p, .modal .overlay ~ * p {
margin: .3em 0
}
.card p:first-child, .modal .overlay ~ * p:first-child {
margin-top: 0
}
.card p:last-child, .modal .overlay ~ * p:last-child {
margin-bottom: 0
}
.card > p, .modal .overlay ~ * > p {
margin: 0;
padding-right: 2.5em
}
.card .close, .modal .overlay ~ * .close {
position: absolute;
top: .4em;
right: .3em;
font-size: 1.2em;
padding: 0 .5em;
cursor: pointer;
width: auto
}
.card .close:hover, .modal .overlay ~ * .close:hover {
color: #ff4136
}
.card h1 + .close, .modal .overlay ~ * h1 + .close {
margin: .2em
}
.card h2 + .close, .modal .overlay ~ * h2 + .close {
margin: .1em
}
.card .dangerous, .modal .overlay ~ * .dangerous {
background: #ff4136;
float: right
}
code {
font-family: Consolas,"courier new";
color:black;
background-color: #f1f1f1;
padding: 2px;
font-size: 105%;
font-weight: bold;
}