-
Notifications
You must be signed in to change notification settings - Fork 1
/
base-style.css
56 lines (51 loc) · 1010 Bytes
/
base-style.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
body{
color: white;
background-color: #1D1D1D;
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: repeat;
}
#targetDiv{
width: 100%;
}
.panel{
box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
font-size: 0.9rem;
padding: 1rem;
margin-bottom: 1rem;
border-radius: 0.5rem;
resize: both;
height: auto;
}
button{
border: none;
color: white;
padding: 7.5px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 2px 1px;
cursor: pointer;
border-radius: 0.5rem;
box-shadow: 0 2px #999;
}
button:active{
color: white;
box-shadow: 0 1px #666;
transform: translateY(1px);
}
.selected-button{
border: none;
color: white;
padding: 7.5px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 2px 1px;
cursor: pointer;
border-radius: 0.5rem;
box-shadow: 0 2px #999;
}