-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (97 loc) · 1.81 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
101
102
103
104
105
106
107
{
margin: 0;
padding: 0;
font-family: 'roboto',sans-serif;
}
.container{
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0,0,0,0,7),rgba(0,0,0,0,7)),url(bg.jpg);
background-position: center;
background-size: cover;
padding-left: 9%;
padding-right: 9%;
box-sizing: border-box;
background-color: chocolate;
}
.navbar {
height: 13%;
display: flex;
align-items: center;
}
.logo {
width: 50px;
cursor: pointer;
}
.menu-icon{
width: 50px;
cursor: pointer;
}
nav {
flex:2;
text-align: right ;
}
nav ul li {
list-style: none;
display: inline-block;
margin-left: 50px;
}
nav ul li a{
text-decoration: none;
color:#fff ;
font-size: 14px;
}
.row {
display: flex;
height: 80%;
align-items: center;
}
.col {
flex-basis: 60%;
}
hr {
color: #fff;
font-size: 100px;
}
p{
color:black;
font-size: 14px;
line-height: 15px;
}
button {
width: 140px;
color: blue;
font-size: 14px;
padding: 14px 0;
background: white;
border: 0;
border-radius: 15px;
outline: none;
margin-top: 20px;
}
.card {
width: 200px;
height: 240px;
display: inline-block;
border-radius: 12px;
padding: 14px 28px;
box-sizing: border-box;
cursor: pointer;
margin: 12px 15px;
background-image: url(bg.png);
background-position: center;
background-size: cover;
}
.pg {
width: 200px;
height: 240px;
display: inline-block;
border-radius: 12px;
padding: 14px 28px;
box-sizing: border-box;
cursor: pointer;
margin: 12px 15px;
background-image: url(bg.png);
background-position: center;
background-size: cover;
}