-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
66 lines (64 loc) · 1.25 KB
/
index.css
File metadata and controls
66 lines (64 loc) · 1.25 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
@import url('https://fonts.googleapis.com/css?family=Prata|Work+Sans');
body, .content-wrap{
background-color: #eee;
}
a, p h1, h2, h3, a:hover, a:active, a:visited{
color: #333;
text-decoration: none;
}
a, p{
font-family: 'Work Sans', sans-serif;
}
header a{
color: #666;
padding-bottom: 5px;
border-bottom: 1px solid rgba(30, 30, 30, 0);
transition: .2s ease-in-out;
}
header a:hover{
color: rgba(30, 30, 30,1);
padding-bottom: 2px;
border-bottom: 1px solid rgba(30, 30, 30, 1);
transition: .2s ease-in-out;
}
h1, h2, h3{
font-family: 'Prata', serif;
}
#task{
margin: 20px auto;
width: 100%;
}
.content-wrap{
width: 80%;
}
.abs-center{
position: absolute;
top:50%; left: 50%;
transform: translate(-50%, -50%);
}
header{
text-align: center;
}
.main{
margin: 20px auto;
text-align: center;
}
.button *{
background-color: #FFF;
display: inline-block;
margin: 10px 20px;
padding: 16px;
transition: .3s;
border-radius: 2px;
box-shadow: 0px 2px 5px 0px rgba(30, 30, 50, 0.5);
cursor: pointer;
}
.button *:hover{
transition: .3s;
box-shadow: 0px 15px 30px 0px rgba(30, 30, 50, 0.3);
}
.button::after{
display: table;
content: "";
clear: both;
}