-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprostyle.css
76 lines (72 loc) · 1022 Bytes
/
prostyle.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
body{
background: linear-gradient(270deg, #085078 0%, #85D8CE 100%);}
.logo img{
width: 300px;
height: 100px;
}
label{
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 50px;
line-height: 67px;
/* identical to box height */
color: #10162C;
}
.hire{
position: absolute;
width: 74px;
height: 30px;
right: 50px;
top: 30px;
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 30px;
/* identical to box height */
color: #FFF509;
animation:lubdub 2s ease;
animation-iteration-count: infinite;
}
.LeftSide{
width: 100%;
}
.LeftSide img{
width: 100%;
margin-bottom: 10px;
margin-right: 5px;
}
.RightSide{
width: 100%;
}
.RightSide img{
width: 100%;
}
.webs{
display: flex;
width: 90%;
margin: auto;
margin-top: 55px;
}
.karya{
font-family: Martel;
position: absolute;
right: 0px;
font-size: 30px;
width: 100%;
}
@keyframes lubdub{
0%{
color: red;
}
50%{
color: green;
}
75%{
color: blue;
}
100%{
color:yellow;
}
}