-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (110 loc) · 1.91 KB
/
style.css
File metadata and controls
121 lines (110 loc) · 1.91 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
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
115
116
117
118
119
120
121
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
font-family: 'poppins',sans-serif;
font-size: 18px;
line-height: 1.5;
background-color:rgba(244, 173, 173, 0.786);
}
img{
max-width: 100%;
}
h1,h2{
margin-bottom: 15px;
}
.container{
max-width: 1100px;
margin: 0 auto;
padding: 0 30px;
}
ul{
list-style: none;
}
.navbar{
background: rgb(215, 69, 69);
color: white;
height: 60px;
}
.navbar .logo{
font-size: x-large;
font-weight: bold;
}
.navbar a{
color: white;
text-decoration: none;
font-size: 18px;
font-weight: bold;
}
.navbar .container{
display: flex;
justify-content: space-between;
align-items: center;
height: 100%;
height: 100%;
}
.navbar ul{
display: flex;
}
.navbar ul li{
margin-left: 18px;
}
.navbar ul li a{
transition-duration: 1200ms;
}
.navbar a:hover{
color: rgba(0, 0, 0, 0.786);
}
.header{
color: rgb(0, 0, 0);
min-height: 400px;
}
.header h1{
font-size: 3rem;
font-weight: bold;
line-height: 1.2;
}
.header img{
max-width: 300px;
margin-top: 10px;
}
.header .container{
display: flex;
align-items: center;
justify-content: space-between;
}
.boxes .container{
display: flex;
justify-content: space-between;
}
.box{
flex:1;
border-radius: 10px;
margin: 20px 10px;
box-shadow: black;
border: 2px solid black;
padding: 0px 0px;
}
.box i{
margin-right: 10px;
}
.box img{
max-width: 90%;
margin: 5px 5px 5px 5px;
}
@media(max-width:768px){
.header .container{
flex-direction: column;
padding-top: 20px;
text-align: center;
}
.boxes .container{
display: block;
text-align: center;
}
.box img{
width: 40%;
}
}