-
Notifications
You must be signed in to change notification settings - Fork 0
/
careerstyles.css
49 lines (40 loc) · 898 Bytes
/
careerstyles.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
html{
width: 100%;
height: 100%;
}
body{
background-image: url("images/skycrapers.jpg");
background-size: 200vmax;
background-position-x: -40vw;
background-position-y: -22vw;
background-repeat: no-repeat;
}
th{
padding:1vw;
font-size:4vw;
color: beige;
}
textarea:focus,select:focus,button:focus,input:focus{
outline:none;
}
.btn
{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: 700;
border:none;
font-size: 4vw;
padding: .5vw 1.35vw;
width: max-content;
border-radius:2vw;
cursor: pointer;
background-image: linear-gradient(to right,rgb(121, 0, 0),rgb(122, 80, 0));
}
.btn:hover{
background-image: linear-gradient(to left,rgb(rgb(92, 60, 0) 4),orange);
transition: background-image 2s ease-in ;
}