-
Notifications
You must be signed in to change notification settings - Fork 26
/
about.css
71 lines (57 loc) · 1.26 KB
/
about.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
* {
scroll-behavior: smooth;
}
body {
background: linear-gradient(to bottom, #a5bcd3, #0f3e78);
}
.homestart {
margin: 60px auto 58px;
height: 100%;
max-width: 1200px;
}
.homestart .container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 50vh;
}
.homestart .logo-home {
width: 460px;
margin-top: 45px;
height: auto;
}
.homestart .text {
font: bold 24px 'Times New Roman', Times, serif;
text-align: center;
color: aliceblue;
}
.about-start .content {
padding: 5%;
color: #333333;
border-radius: 14px;
transition: transform 0.5s ease-in-out;
display: flex;
flex-direction: row;
background: linear-gradient(to bottom, #9fbdd7, #d3e4f3);
font-family: 'Times New Roman';
}
.about-start .descrption {
padding: 2%;
flex: 1;
font-family: Times, serif;
}
.about-start .image {
margin-left: auto;
transform: rotate(0.3s);
}
.about-start .image img {
max-height: 230px;
transition: transform 0.5s ease-in-out;
}
.about-start .image img:hover {
transform: rotate(-3deg) scale(1.10);
}
.about-start .content:hover {
transform: scale(1.08);
}