-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (44 loc) · 1.06 KB
/
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
html {
height: 100%;
}
body {
text-align: center;
-webkit-font-smoothing: antialiased;
background: #b0b0af;
background-attachment: fixed;
text-shadow: 0px 2px 1px #222;
margin-top: 100px;
font-family: "Helvetica", "Geneva", "Arial", sans-serif;
color: #FFFFFF;
font-weight: bold;
font-size: 30px;
line-height: 150%;
}
a:link, a:visited {
padding: 2px;
border: 2px dashed #ddd;
border-radius: 10px 10px 10px 10px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
color:#222;
text-shadow: 0px 0px 10px #fff;
text-decoration: none;
transition: all .5s linear 0;
-moz-transition: all .5s linear 0;
-webkit-transition: all .5s linear 0;
}
a:hover {
padding: 2px;
border: 2px solid #ffffff;
border-radius: 10px 10px 10px 10px;
text-shadow: none;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
color:red;
text-decoration: none;
transition: all .5s linear 0;
-moz-transition: all .5s linear 0;
-webkit-transition: all .5s linear 0;
}