-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (83 loc) · 1.36 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'IBM Plex Sans', sans-serif;
}
.banner{
background-image: url('img/bgimg.jpg');
background-size: cover;
min-height: 600px;
background-position: right bottom;
}
.container{
max-width: 1100px;
margin: 0 auto;
}
.banner-headline{
font-size: 70px;
padding-top: 120px;
}
.banner-text{
font-size: 24px;
padding-top: 10px;
}
.banner-btn{
padding: 12px 25px;
margin-top: 15px;
background-color: #24126a;
color: #ffffff;
border: none;
border-radius: 5px;
font-size: 20px;
}
.banner-btn:hover{
background-color: #000000;
}
.content{
padding: 80px 0px;
background-color: #f7f7f7;
}
.row{
display: flex;
margin-top: 40px;
}
.col-6{
width: 50%;
}
img{
max-width: 100%;
height: auto;
}
.text-content{
padding: 5%;
}
.text-content h1{
color: #24126a;
margin-bottom: 20px;
font-size: 40px;
}
.text-content p{
color: #222222;
font-size: 18px;
}
.btn-content{
padding: 10px 20px;
margin-top: 15px;
background-color: #24126a;
color: #ffffff;
border: none;
border-radius: 5px;
font-size: 20px;
margin-top: 20px;
}
.btn-content:hover{
background-color: #000000;
}
footer{
background-color: #000000;
padding: 30px;
color: #ffffff;
font-size: 18px;
text-align: center;
}