-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
81 lines (74 loc) · 1.28 KB
/
main.css
File metadata and controls
81 lines (74 loc) · 1.28 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
body{
font-family: Helvetica, sans-serif
}
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #858585;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
div.main{
margin: auto;
position: relative;
width: 500px;
border: 1px solid #858585;
box-shadow: 0 0 15px #858585;
}
div.app-header, div.app-footer{
text-align: center;
max-width: 478px;
width: 100%;
min-height: 25px;
color: #fff;
background: #3367d6;
padding: 15px 10px;
border: 1px solid #3367d6;
}
.app-contact-buttons{
text-align: center;
font-size: 20px;
}
.app-contact-buttons a{
color:#000;
}
.app-contact-avatar, .app-contact-buttons{
width: 13.3%;
height: 50px;
padding: 15px
}
.app-contact-avatar img{
width: 50px;
}
.app-content{
height:700px;
overflow:auto;
/**/
}
.icon-link{
text-decoration: none;
}
tr td{
border-bottom: 1px solid #858585;
}
tr:hover td{
height: 60px;
border-top: 1px solid #858585;
border-bottom: 2px solid #858585;
}
tr:hover{
cursor: pointer;
background-color: #f1f1f1;
}
.round-avatar{
overflow:hidden;
border-radius: 25px;
}