-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
114 lines (92 loc) · 1.59 KB
/
test.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
*{
padding: 0;
margin: 0;
border: 0;
font-family: 'Mulish', sans-serif;
background: #FFFFFF;
}
body{
width: 100%;
margin: auto;
}
.father{
width: 100%;
display: flex;
justify-content: center;
}
.div-border{
border: 1px solid black;
margin-bottom: 50px;
width: 50px;
}
/*======= Navbar ========*/
header{
display: flex;
justify-content: space-evenly;
align-items: center;
margin-top: 15px;
margin-bottom: 15px;
}
.head-logo{
display: flex;
justify-content: center;
}
.head-logo img{
width: 70%;
padding-right: 15px;
}
.head-nav ul{
display: flex;
margin: 0;
}
.head-nav ul li{
list-style: none;
padding-left: 25px;
padding-right: 25px;
font-weight: 400;
}
.head-nav ul li a{
text-decoration: none;
color: #1F1534;
opacity: 0.5;
}
.head-nav ul li a:hover{
font-weight: bold;
opacity: 100;
}
#toggle{
display: none;
}
/*====== Content hero ======*/
.container{
display: flex;
align-items: center;
margin-top: 100px;
padding: 10px;
}
.container-hero-text.col-xl-6 {
padding-left: 0;
padding-right: 12em;
}
.container-hero-text h1{
font-weight: bold;
color: #000000;
}
.content-hero-text p{
font-weight: 300;
color: #7D7987;
}
.container-hero-text button {
margin-top: 15px;
}
.container-hero-text button a{
font-weight: 700;
text-decoration: none;
color: #FFFFFF;
background: #458FF6;
padding: 10px 25px 10px 25px;
border-radius: 55px;
}
.container-hero-text button a:hover{
padding: 10px 30px ;
}