-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnical.css
More file actions
96 lines (82 loc) · 1.75 KB
/
Copy pathtechnical.css
File metadata and controls
96 lines (82 loc) · 1.75 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
@import url(https://fonts.googleapis.com/css2?family=Space+Mono&display=swap);
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: black;
color: white;
font-family: Space Mono;
font-weight: 500;
font-size: large;
}
h1 {
text-align: center;
padding: 20px;
}
h2, h3, h4 {
color: #ffa500;
font-weight: 900;
}
.event-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
.g {
width: 250px;
height: 250px;
}
.h {
width: 234px;
height: 249px;
}
.event-box {
width: calc(50% - 100px);
height: 600px;
background-color: black;
border-image: linear-gradient(to right, #ff9900, #ff0000);
border-image-slice: 1;
border-image-width: 2;
border-right-width: 5px;
border-bottom-width: 5px;
border-style: solid;
padding: 10px;
text-align: center;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
animation: eb 8s linear infinite ;}
.event-box img {
width: 50%;
height: auto;
}
@keyframes eb {
0% ,100%{
border-image-source: linear-gradient(to right, #ff9900, #ff0000);
}
50%{
border-image-source: linear-gradient(to right, #00a6a6, #0055ff);
}
}
.event-box:nth-child(3),
.event-box:nth-child(4) {
margin: 0;
}
.t{
color:black;
}
button {
background-color: #ffa500;
color: black;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #ff9900;
}