-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhjem.css
60 lines (53 loc) · 1.1 KB
/
hjem.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
/* forside */
#front-info {
padding: 30px;
margin: 100px 0 0 0;
position: absolute;
z-index: 2;
width: 600px;
}
#front-info p {
margin: 10px 0 -5px 0;
font-size: 20px;
line-height: 35px;
}
#harold {
margin: 0 200px 50px;
display: block;
width: 760px;
height: 600px;
background: linear-gradient(
90deg,
rgba(45, 99, 98, 0.8) 40%,
rgba(0, 0, 0, 0.1) 100%),
url(media/work_laptop.jpg);
background-size: cover;
border-radius: 5px;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
#start-button {
display: block;
margin: 0 auto 50px;
border: 3px solid;
border-radius: 5px;
width: 200px;
padding: 20px;
color: white;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
background: rgba(0, 0, 0, 0.3);
transition: .3s;
cursor: pointer;
}
#start-button:hover {
color: #f85b1c;
}
#start-button:hover a {
color: #f85b1c;
}
#start-button a {
text-decoration: none;
color: white;
padding: 20px;
font-size: 20px;
transition: .3s;
}