-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patheventType.css
More file actions
107 lines (107 loc) · 2.08 KB
/
eventType.css
File metadata and controls
107 lines (107 loc) · 2.08 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
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
*{
margin: 0px;
padding: 0px;
/* font-family: sans-serif; */
font-family: Gilroy, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
line-height: 2;
}
.section-1 {
padding: 0px 280px;
margin: auto;
display: flex;
justify-content: space-between;
margin-top: 10px;
border-bottom: 1px solid lightsteelblue;
}
.active {
font-weight: 700;
}
.section-1 img{
width: 50%;
margin-top: 12px;
}
.section-1 ul{
display: flex;
gap: 15px;
}
.section-1 p{
margin: 15px;
}
.section-1 p:hover{
font-weight: bold;
}
.section-1 button{
height: 40px;
width: 40px;
border-radius: 50%;
cursor: pointer;
border: 2px solid #c1baba;
}
.section-1 button:hover {
border: 2px solid rgb(29, 3, 3);
}
.section-1 a{
text-decoration: none;
}
.section-2 {
width: 64%;
margin: auto;
display: flex;
padding: 30px 10px;
}
.section-2 button {
background-color: #ffffff;
font-weight: 400;
color: rgb(0,105,255);
padding: 0px 24px;
height: 40px;
margin-top: 5px;
border-radius: 42px;
border: 1px solid rgb(0,105,255);
cursor: pointer;
margin-right: 15px;
font-size: 16px;
}
.section-2 button:hover{
background-color: #e0e8f6;
}
.section-2 h1{
font-size: 20px;
margin-left: 25%;
font-weight: 400;
}
.section-3 {
padding: 20px 280px;
margin: auto;
/* margin: 30px 0px; */
background-color: #f8f8f9;
}
.section-3 button {
color: #ffffff;
font-weight: 700;
background-color: rgb(0,105,255);
padding: 0px 24px;
height: 45px;
margin-top: 5px;
border-radius: 42px;
border: none;
cursor: pointer;
}
.section-3 > div {
display: flex;
margin: 30px 0px;
}
.section-3 > div > :nth-child(2) {
margin-left: 30px;
}
.section-3 h2 {
font-size: 18px;
font-weight: 400;
}
.section-3 > div > :nth-child(3) {
margin-left: 45%;;
}
.section-3 > div :nth-child(2) {
width: 188%;
}