-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (89 loc) · 1.58 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
line-height: 1.4;
font-weight: 300;
}
.hero_section {
background-image: url(developer.jpg);
min-height: 100vh;
background-position: center;
background-size:cover ;
background-repeat: no-repeat;
}
.text_container {
color: white;
max-width: 900px;
margin: 0 auto;
padding-top: 64px;
padding-left: 16px;
}
.lg_text {
font-size: 72px;
}
.black_box {
background-color: black;
padding: 80px;
}
.black_box h2 {
font-size: 80px;
color: white;
font-weight: 300;
text-align: center;
}
.black_box h2 span {
font-weight: 400;
font-size: 96px;
}
.Work {
display: grid;
gap: 20px;
margin: 20px 0;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
width: 320px;
height: 430px;
border-radius: 10px;
box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.2);
transition: 0.2s;
}
.card img{
width: 100%;
height: 100%;
}
.img1{
width: 300px;
height: 430px;
border-radius: 10px ;
}
.img2{
width: 300px;
height: 430px;
border-radius: 10px;
}
.img3{
width: 300px;
height: 430px;
border-radius: 10px ;
}
.grid_item {
display: flex;
justify-content: center;
align-items: center;
}
.card:hover{
transform: scale(1.04);
box-shadow: 3px 5px 5px rgba(1, 1, 1, 0.2);
transition: 0.2s;
}
.card_content{
padding: 20px;
}
.card_content h3{
margin-bottom: 10px;
}