-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 1.09 KB
/
style.css
File metadata and controls
70 lines (60 loc) · 1.09 KB
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
61
62
63
64
65
66
67
68
body,
html {
width: 100%;
height: 100%;
}
hr{
max-width: 75%;
border-width: 5px;
border-color: azure;
}
body {
font-family: 'Montserrat', sans-serif;
}
header.startup{
background-position: center;
background-image: url("https://www.howden.com/Howden/media/Howden/img/intelligent-solutions/digitalfingerprint.jpg");
background-size:cover;
height: 100%
}
header.startup hr{
margin-top: 30px;
margin-bottom: 120px;
}
.container{
display: flex;
justify-content: center;
justify-items: center;
height: 100%;
}
h1{
font-size: 2rem;
font-family:'Saira Stencil One', cursive;
}
.display-4{
color: azure;
border: 3px ;
border-style: solid;
border-radius:10px;
border-color: azure;
background-color: rgba(255, 255, 255, 0.1);
}
.btn {
font-weight: 1000;
text-transform: uppercase;
border-radius: 150px;
font-family: 'Montserrat', sans-serif;
}
.btn-xl{
padding: 2rem 3rem;
}
.btn-primary{
background-color: azure;
border-color: chartreuse;
color: darkblue;
}
.btn-primary:hover{
border-width: 5px;
border-color: chartreuse;
cursor: pointer;
}