-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtabstache.css
92 lines (82 loc) · 1.45 KB
/
tabstache.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
body {
background-color: #feba00;
min-width: 200px;
margin: 0;
}
h1 {
color: #5A5A5A;
background-color: #feba00;
margin-top: 40px;
text-align: right;
margin-bottom: 5px;
margin-right: 13px;
font-size: 15px;
font-weight: bold;
}
.input-div{
background-color: white;
padding: 8px;
box-shadow: 0 3px 2px rgba(100, 100, 100, 0.2);
}
input {
border: none;
outline: none;
color: #5A5A5A;
padding: 3px;
height: 30px;
font-size: 14px;
width: 120px;
background-color: white;
}
button{
display: inline-block;
font-size: 12px;
padding: 5px 9px;
border: none;
background-color: #feba00;
color: white;
border-radius: 2px;
box-shadow: 0 3px 2px rgba(100, 100, 100, 0.2);
transition: box-shadow 100ms ease-out;
}
button:hover{
box-shadow: 0 5px 2px rgba(100, 100, 100, 0.2);
cursor: pointer;
}
section {
margin-top: 15px;
min-width: 150px;
padding-top: 5px;
padding-bottom: 5px;
}
article {
width: 100%;
margin: 1px;
outline: none;
}
.stache {
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
font-size: 14px;
padding: 5px 5px 5px 10px;
font-weight: bold;
text-transform: capitalize;
box-shadow: none;
text-align: left;
color: white;
border-bottom: thin solid #FFD35C;
border-radius: 0;
outline: none;
}
.stache:hover{
cursor: pointer;
box-shadow: none;
}
.stache:before {
content: "} ";
color: white;
margin-right: 10px;
}