-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
157 lines (132 loc) · 2.4 KB
/
style.css
File metadata and controls
157 lines (132 loc) · 2.4 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
* {
padding: 0;
margin: 0;
list-style: none;
text-decoration: none;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: #e8e6e7;
}
header {
padding: 20px 70px; /* 20px Top e Bottom / 70px Right e Left */
background-color: #1d1d1f;
}
.navigation {
display: flex;
align-items: center;
justify-content: space-between;
}
.navigation .logo {
width: 50px;
}
.navigation ul {
display: flex;
gap: 60px;
}
.navigation ul li a {
color: #888;
font-weight: 600;
padding-bottom: 4px;
transition: all 0.5s ease-in-out;
}
.navigation ul li a:hover {
color: #fff;
border-bottom: 1px solid #fff;
}
.navigation .check {
color: #fff;
border-bottom: 1px solid #fff;
}
/* Main */
main section {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5rem 10rem;
}
.main-text img {
width: 15rem;
margin-bottom: 3vh;
}
.main-text h3 {
font-size: 3.5rem;
margin-bottom: 2rem;
}
.main-text p {
margin-bottom: 1.5rem;
}
.main-text h6 {
color: #999;
font-size: 1rem;
margin-bottom: 2rem;
}
.main-text .btn {
padding: 10px 25px;
background-color: #0071e3;
border-radius: 20px;
color: #fff;
font-size: 1.5rem;
transition: all 0.5;
}
.main-text .btn:hover {
opacity: .85;
}
.main-text .text h5 {
font-size: 1rem;
color: #444;
margin-top: 2rem;
margin-bottom: 2rem;
}
.main-text .content {
display: flex;
align-items: center;
gap: 10px;
}
.main-text .content span {
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
box-shadow: 1px 1px #888;
transition: all 0.5s;
}
.main-text .content span:hover{
opacity: .80;
}
#green {
background-color: #384937;
}
#pink{
background: #f8ddd6;
}
#blue{
background: #225f7e;
}
#black{
background: #192028;
}
#white{
background: #f7f2ee;
}
#red{
background: #ae0617;
}
.main-img {
transition: all 1s ease;
z-index: 100;
}
.main-img img {
width: 500px;
transform: rotate(-7deg);
}
.circle {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #445c42;
clip-path: circle(800px at right 1000px);
}