-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (55 loc) · 934 Bytes
/
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
* {
padding: 0;
margin: 0;
font-family: "SF Pro";
}
.content {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 500px;
}
.left {
display: flex;
flex-direction: column;
gap: 15px;
width: 40%;
}
.button {
display: flex;
gap: 10px;
}
.button1 {
text-decoration: none;
color: white;
padding: 10px 20px;
background-color: #324ca8;
border: solid 2px #324ca8;
border-radius: 9999px;
transition: all 300ms ease 0s;
}
.button1:hover {
background: none;
color: #324ca8;
}
.button2 {
text-decoration: none;
color: #324ca8;
padding: 10px 20px;
background: none;
border: solid 2px #324ca8;
border-radius: 9999px;
transition: all 300ms ease 0s;
}
.button2:hover {
background-color: #324ca8;
color: white;
}
.right {
display: flex;
width: 40%;
}
.img {
width: 70%;
}