-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (47 loc) · 785 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
53
54
55
56
57
html{
height: 100%;
width: 100%;
}
body{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
body{
font-family: 'montserrat' sans-serif;
background-image: url(background-image.jpg);
background-size: cover;
height: 100%;
}
h1{
padding-bottom: 100px;
}
.faded {
color: rgba(255, 255, 255, 0.8);
}
.btn{
border-radius: 200px;
}
.btn-lg{
padding: 15px 15px 15px 15px;
}
.btn-primary{
margin-right: 10px;
}
.btn-danger{
margin-left: 10px;
}
.btn-primary:hover{
cursor: pointer;
background-color: blue;
border-color: blue;
}
.btn-danger:hover{
cursor: pointer;
background-color: orangered;
border-color: orangered;
}
.container:hover{
transform: scale(1.01);
animation: forwards;
}