-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (79 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
83 lines (79 loc) · 1.55 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
82
83
body{
font-family: 'Ubuntu', sans-serif;
background-color: black;
color: white;
text-align: center;
}
#topimg {
height: 20%;
}
#top {
background-color: #3B3B3B;
width: 100%;
border-bottom-color: white;
border-bottom: 2px;
}
#app {
border-color: white;
border-radius: 0px 0px 12px 12px;
}
#app {
/* Add shadows to create the "card" effect */
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
/* On mouse-over, add a deeper shadow */
#app:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
/* Add some padding inside the card container */
.container {
padding: 2px 16px;
}
.button {
background-color: lightgrey;
border-color: white;
border: 5px;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 12px;
transition: color 500ms, background-color 500ms;
margin: 5px;
}
#install {
background-color: lightgreen;
border-color: black;
}
#uninstall {
background-color: red;
border-color: black;
}
#install:hover {
background-color: green;
border-color: white;
}
#uninstall:hover {
background-color: darkred;
border-color: white;
}
.button:hover {
background-color: darkgrey;
color: white;
}
#prompt-content {
background-color: lightgrey;
color: black;
position: absolute;
top: 50%;
left: 50%;
padding: .8em 1.2em;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}