-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (104 loc) · 1.84 KB
/
Copy pathstyle.css
File metadata and controls
104 lines (104 loc) · 1.84 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
body {
display: flex;
flex-direction: column;
background-color: rgb(4, 4, 46);
height: 50vh;
}
h1 {
background-color: rgb(241, 91, 241);
color: rgb(8, 8, 91);
display: flex;
justify-content: center;
font-size: 15px;
}
.first {
display: flex;
gap: 30px;
justify-content: center;
}
a:hover {
color: #ff00a6;
}
.design {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 40px
}
.design{
padding: 15px 25px;
background-color: #ff00a6;
border: none;
color: whitesmoke;
font-size: 18px;
border-radius: 15px;
cursor: pointer;
transition: 0.3s;
display: block;
margin: 0 auto;
}
.design:hover {
background-color: #e60094;
}
h2 {
color: rgb(167, 41, 167);
display: flex;
justify-content: center;
font-size: 50px;
font-weight: bold;
margin-bottom: 20px;
}
.features {
color: #111;
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 20px 20px
}
h3 {
font-size: 25px;
margin-bottom: 40px;
text-align: center;
font-weight: 20px;
color: #ff00a6;
}
.features-grid {
background-color: #fff;
display: table;
}
.feature {
background-color: #f9f9f9;
padding: 10px 30px;
border-radius: 12px;
display: table-cell;
vertical-align: middle;
margin: 10px;
height: 60vh;
}
.feature h4 {
font-size: 20px;
margin-bottom: 10px;
color: #333;
}
.feature img{
width: 70px;
margin-bottom: 20px;
display: flex;
justify-content: center;
}
.start {
color: whitesmoke;
font-size: 18px;
text-align: center;
margin-bottom: 30px;
}
.end {
color: whitesmoke;
font-size: 15px;
text-align: center;
padding: 20px;
}