-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
145 lines (122 loc) · 1.97 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
body {
background-color: #0B60B0;
margin: 0;
padding: 0;
}
header {
background-color: #40A2D8;
display: flex;
align-items: center;
justify-content: space-between;
padding-left: 30px;
padding-right: 30px;
}
.logo {
color: white;
cursor: pointer;
}
.logo:hover {
color: red;
transform: scale(1.2);
transition: all ease .5s;
}
nav ul {
display: flex;
}
nav ul {
list-style: none;
padding-right: 30px;
}
nav li a {
text-decoration: none;
color: #D4E7C5;
padding-right: 20px;
}
nav li a:hover {
color: #BFD8AF;
text-decoration: underline;
text-underline-offset:8px;
}
.title-hero h1,p {
text-align: center;
color: white;
padding-top: 50px;
padding-bottom: 30px;
}
.image-hero img {
display: block;
width: 80%;
margin: 0 auto;
border-radius: 20px;
box-shadow: 2px 4px 10px greenyellow;
}
.image-hero img:hover {
transform: scale(.8);
transition: 2s;
}
hr {
width: 50%;
}
#menu {
width: 90%;
margin: 0 auto;
}
#menu h2 {
padding-top: 40px;
color: #FFB534
}
.cards {
background-color: #0B60caB0;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.card {
padding: 30px;
width: 200px;
border: 1px solid whitesmoke;
}
.card img {
width: 100%
}
.card img:hover {
transform: scale(1.1);
transition: .3s;
}
.container {
text-align: center;
}
.card a {
text-decoration: none;
color: whitesmoke;
margin-left: 30px;
border: 1px solid green;
padding: 12px 30px;
border-radius: 12px;
box-shadow: 1px 2px 4px;
background-color: greenyellow;
}
.card a:hover{
background-color: green;
color: whitesmoke;
}
#contact {
width: 95%;
margin: 40px auto;
display: flex;
align-items: center;
justify-content: space-around;
}
.image-contact {
width: 50%;
}
.image-contact img {
width: 100%;
border-radius: 50%;
}
footer {
width: 95%
margin:60px auto;
color: whitesmoke;
}