-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
55 lines (55 loc) · 1020 Bytes
/
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
#shareBox {
width: 30px;
height: 30px;
position: absolute;
}
#shareBox > button {
width: 100%;
height: 100%;
border-radius: 2px;
border: none;
outline: none;
background-color: #292A2B;
background-image: url('twitter.png');
background-repeat: no-repeat;
background-position: center;
background-size: 70%;
cursor: pointer;
}
#shareBox > button::after {
position: absolute;
content: '';
border-top: 10px solid black;
border-left:10px solid transparent;
border-right: 10px solid transparent;
left: 5px;
top: 30px;
}
article{
width: 400px;
margin: auto;
font-size: 14pt;
}
h1,
h3{
text-align: center;
}
h3{
background-color: #FF0A68;
color: white;
text-shadow: 1px 1px 1px black;
padding: 2px 0;
box-shadow: inset 0 0 2px grey;
}
body{
font-family: 'crimson text';
}
.btn {
background-color: #343436;
background-image: linear-gradient(to bottom,#555 0,#444 100%);
border-radius: 3px;
color: white;
padding: 4px 6px 4px 6px;
text-shadow: 0 4px 0 #000;
box-shadow: inset #000 0 0 2px;
}