forked from darkwark/psconstants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
86 lines (72 loc) · 1.19 KB
/
styles.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
*:focus{
outline: none;
}
body {
font-family: 'Roboto';
line-height: 1.7rem;
margin: 0;
padding: 0;
}
h1{
margin-bottom: 0;
}
a {
color: rgba(63, 139, 157, 1);
text-decoration: none;
}
a:hover{
color: rgba(221, 62, 124, 1);
border-bottom: 1px solid rgba(221, 62, 124, .5);
}
table{
margin-top: 1rem;
width: 100%;
}
thead th {
background: #f5f5f4;
}
td{
width: 25%;
}
#app {
margin: 3rem auto;
margin-bottom: 5rem;
padding: 0 3rem;
max-width: 800px;
min-width: 520px;
}
.description p{
margin-top: 1rem;
margin-bottom: 2rem;
}
.search{
border: 1px solid lightgray;
border-radius: 3px;
margin: 0;
padding: 10px;
width: calc(100% - 20px);
transition: border .3s, box-shadow .3s;
}
.search:focus{
outline: none;
border: 1px solid #5EC2FF;
box-shadow: 0px 0px 0px 3px rgba(94,193,255,0.24);
}
button {
border: 1px solid rgba(203, 203, 203, 1);
border-top: 0px;
background: transparent;
width: 100%;
padding: 1rem;
margin-top: 0rem;
border-radius: 3px;
}
button:hover{
background: rgba(0,0,0, .05)
}
button:active{
background: rgba(0,0,0, .1)
}
[v-cloak] {
display: none;
}