-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (87 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
106 lines (87 loc) · 1.7 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
* {
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
min-width: 100vw;
background-image: linear-gradient(to top, #a8edea 0%, #fed6e3 100%);
}
/* HEADER SECTION */
/*Centre the header and the text below */
.header {
text-align: center;
line-height: 30px;
margin-top: 20px;
}
/* HERO SECTION */
.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
background-color: #FFFAFA;
padding: 40px;
margin: 40px auto;
max-width:min-content;
border-radius: 10px;
}
.item-1, .item-2, .item-3,
.item-4, .item-5, .item-6 {
min-height: 10vh;
}
.item-1, .item-2, .item-3,
.item-4, .item-5, .item-6 {
display: flex;
gap: 20px;
padding: 20px;
}
.item-1 h3, .item-1 p,
.item-2 h3, .item-2 p,
.item-3 h3, .item-3 p,
.item-4 h3, .item-4 p,
.item-5 h3, .item-5 p,
.tem-6 h3, .item-6 p {
margin-top: 15px;
min-width: 300px;
}
.item-1 img, .item-2 img, .item-3 img,
.item-4 img, .item-5 img, .item-6 img {
border-radius: 50%;
}
.item-1 h3:hover,
.item-2 h3:hover,
.item-3 h3:hover,
.item-4 h3:hover,
.item-5 h3:hover,
.item-6 h3:hover,
h1:hover {
cursor: pointer;
color: lightblue;
}
/*BUTTON SECTION */
input {
width: 100px;
height: 40px;
background-color: #101830;
color: white;
border-radius: 6px;
}
.button {
text-align: center;
position: relative;
top: 50px;
}
input:hover {
background-color: inherit;
color: #000;
transform: scale(1.2);
transition: 0.5s ease-in-out;
cursor: pointer;
}
/* PSEUDO ELEMENTS */
.text h3::after {
content: url(/images/badge/verified.svg);
position: relative;
vertical-align: middle;
margin: 0.5rem;
}