-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (67 loc) · 1.09 KB
/
styles.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
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
* {
margin: 0;
padding: 0;
}
HTML, BODY {
height: 100%;
}
BODY {
font-family: arial, sans-serif;
position: relative;
}
.container {
margin: 0 auto;
overflow: hidden;
width: 300px;
height: 200px;
position: absolute;
left: 50%;
top: 40%;
margin-left: -150px;
margin-top: -100px;
}
h1 {
font-size: 3.5em;
color: darkcyan;
transition: color 0.3s linear;
cursor: default;
display: inline-block;
}
.ext {
visibility: hidden;
color: gainsboro;
opacity: 0;
margin-left: -500px;
transition: visibility 0.3s linear, opacity 0.3s linear, margin-left 0.2s step-end;
}
.intro {
text-align: left;
color: gainsboro;
vertical-align: bottom;
}
h1:hover {
color: gainsboro;
}
h1:hover .ext {
visibility: visible;
opacity: 0.7;
margin: 0;
}
.cover {
overflow: hidden;
}
.contacts {
font-size: 1em;
line-height: 24px;
}
.contacts ul {
list-style-type: none;
}
a {
color: darkcyan;
text-decoration: none;
transition: color 0.1s ease 1ms;
}
a:hover {
color: #005e5e;
}