-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpersonal_web_home.css
54 lines (54 loc) · 1020 Bytes
/
personal_web_home.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
html, body {
height : 100%;
}
body {
background-color: #3db6b8;
background-image: url(https://s.aolcdn.com/hss/storage/midas/23ad929f3ee1182ab60f91ef66ec16d3/203511293/overwatch-ed.jpg);
background-size: cover;
background-blend-mode: darken;
}
.heading {
width: 600px;
height: 300px;
margin:auto;
position: absolute;
top: 0px;right: 0px;left: 0px;bottom: 0px;
}
.title1 {
display: block;
text-align: center;
font-size: 60pt;
color: white;
font-family: big john;
}
.title2 {
display: block;
text-align: center;
font-size: 15pt;
color: white;
font-family: serif;
margin-top: 15px;
}
.info {
margin: 50px auto;
display: block;
width: 180px;
height: 50px;
border: 3px solid white;
background-color: rgba(300,255,255,0);
color: white;
font-family: sans-serif;
font-weight: bold;
border-radius: 5px;
font-size: 15px;
transition: background-color 1000ms, color 1000ms;
}
.info a {
text-decoration: none;
color: white;
}
.info:hover{
background-color: black;
color: #222;
cursor: pointer;
}