forked from Lab1not/coranos.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (53 loc) · 826 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.small_image {
height: 100px;
width: 100px;
}
table, tr, td, th {
border: solid;
border-width: 0.5px;
font-family: monospace;
}
.text_align_center{
text-align: center;
}
.w100pct {
width: 100%;
}
.w99pct {
width: 99%;
}
.w96pct {
width: 96%;
}
.w600px {
width: 600px;
}
.selected_button {
box-shadow: 0px -2px #999;
}
.unselected_button {
box-shadow: 0 0px #999;
}
.button {
padding: 3px 3px;
margin: 3px 3px;
font-size: 12px;
text-align: center;
cursor: pointer;
outline: none;
color: #000;
background-color: #EEE;
border: solid;
border-width: 0.5px;
border-radius: 5px;
border-color: #AAA;
}
.button:hover {
background-color: #DDD;
box-shadow: 0px 2px #999;
}
.button:active {
background-color: #EEE;
box-shadow: 0 1px #666;
transform: translateY(2px);
}