-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (106 loc) · 1.93 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
*{
margin: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header{
display: flex;
justify-content: space-between;
padding: 30px 120px;
background-color: rgb(34, 23, 65);
color: white;
}
.header .kaaka{
background-color: #05020f;
color: white;
border-radius: 7px;
padding: 10px 17px;
}
.header ul{
display: flex;
gap: 30px;
font-size: 17px;
list-style: none;
align-items: center;
}
.header button{
background-color: #f3cc61;
border-radius: 4px;
padding: 15px 30px;
color:rgb(13, 2, 40) ;
font-size: 15px;
font-weight: bold;
border: rgb(252, 195, 89);
}
.main{
display: flex;
justify-content: space-between;
padding: 60px 100px;
background-color: rgb(252, 195, 89);
}
.main-rigth{
width: 400px;
height: 400px;
border-radius: 200px;
background-color: rgb(4, 150, 133);
}
.main-left{
width: 500px;
font-size: 30px;
padding-top: 30px;
}
.main-left p{
font-size: 13px;
padding: 5px;
font-weight: 500;
}
.main-left button{
background-color: black;
color: white;
padding: 14px 20px;
padding-right: 40px;
border: black;
border-bottom-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
font-weight: bold;
margin-top: 10px;
}
.footer{
padding: 60px 50px;
background-color:#f7f7f7;
}
.name{
padding: 10px 50px;
}
.name h4{
text-align: right;
}
.name p{
padding-top: 10px;
color: #9e9e9e;
}
.naa{
display: flex;
justify-content: space-between;
padding: 20px 50px;
}
.image img{
width: 200px;
height: 250px;
object-fit: cover;
border-radius: 8px;
gap: 80px;
}
.image h3 {
margin: 10px 0;
font-size: 1.2rem;
}
.image p {
color: #9e9e9e;
}
.naa:hover :not(.image:hover){
opacity: 0.8;
}
.image:hover{
transform: scale(1.09);
}