-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (44 loc) · 883 Bytes
/
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
48
49
50
51
52
body, html {
width: 100%;
height: 100%;
}
body {
/*background-position: center;*/
/*background-image: url("laptop.jpg");*/
/*background-repeat: no-repeat;*/
max-height:100%;
max-width:100%;
font-family: 'Lucida Sans Unicode';
}
header.startup {
background-position: center;
background-image: url("laptop.jpg");
background-size: cover;
height: 100%;
}
header.startup h1 {
font-size: 2rem;
}
.btn {
font-weight: 700;
text-transform: uppercase;
border-radius: 300px;
font-family: 'Lucida Sans Unicode';
}
.btn-xl {
padding: 1rem 2rem;
}
.button1 {
margin-top: 510px;
margin-right: 5px;
}
.btn-primary {
background-color: orange;
border-color: orange;
transition: all 1s;
}
.btn-primary:hover {
background-color: whitesmoke;
border-color: whitesmoke;
transform: scale(1.1);
}