-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (44 loc) · 727 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (44 loc) · 727 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
body, html {
height: 100%;
margin: 0;
}
body {
/*
background: url('bg.jpg');
background-size: cover;
background-repeat:no-repeat;
background-position:center center;
*/
background: #eee;
}
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border: 5px solid #22b455;
padding: 10px;
}
#mkit {
width: 200px;
height: 200px;
background: #000;
color: #fff;
font-family: "Koulen";
text-align: center;
/*border-radius: 100px;*/
}
.mkit-text {
padding-top: 5px;
font-size: 72px;
}
#blink {
color: #22b455;
}
.dark {
color: #204829;
}
.up {
margin-top: -60px;
}