-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
167 lines (133 loc) · 2.47 KB
/
Copy pathstyle.css
File metadata and controls
167 lines (133 loc) · 2.47 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
* {
box-sizing: border-box;
font-family: inherit;
}
body {
font-family: "Poppins", sans-serif;
text-align: center;
}
.container {
display: grid;
gap: 1rem;
width: 650px;
margin: 0 auto;
padding: 1.5rem;
}
.container > div {
border: 2px solid #000;
border-radius: 10px;
}
/* text section -------------------------- */
.text-section {
padding: 1rem;
}
.text-section h1,
.text-section p {
margin: 0;
}
/* icon section -------------------------- */
.icon-section {
display: flex;
justify-content: space-evenly;
gap: 1rem;
}
.fa-house,
.fa-user,
.fa-skull,
.fa-heart,
.fa-star,
.fa-bolt {
font-size: 2rem;
}
.icon-section div {
width: fit-content;
padding: 0.5rem;
margin: 0.5rem;
}
.icon-section p {
margin: 0;
margin-top: 0.5rem;
}
/* button section -------------------------- */
.button-section {
display: flex;
justify-content: space-evenly;
gap: 1rem;
padding: 1rem;
}
.button-section button {
padding: 0.5rem 1.5rem;
border: none;
border-radius: 5px;
font-weight: bold;
color: white;
background-color: cadetblue;
cursor: pointer;
}
.button-section button:hover {
background-color: darkcyan;
}
.button-section button:active {
background-color: #006262;
}
/* input section -------------------------- */
.input-section {
padding: 1rem;
}
.input-section input {
width: 100%;
padding: 0.5rem;
border-radius: 5px;
outline: none;
border: 1px solid black;
}
.input-section input:focus {
border-color: #006262;
box-shadow: #006262 0px 0px 5px 0px;
}
/* link section -------------------------- */
.link-section {
display: flex;
justify-content: space-evenly;
padding: 1rem;
}
.google:visited {
color: red;
}
/* card section -------------------------- */
.card-section {
padding: 1.2rem;
}
.card-section strong {
border: #006262 2px solid;
margin: 0;
padding: 0.5rem 3rem;
border-radius: 5px;
}
.card-section strong::before {
content: "⭐";
margin-right: 1rem;
}
.card-section strong::after {
content: "✔️";
margin-left: 1rem;
}
/* paragraph section -------------------------- */
.paragraph-section {
padding: 1rem;
}
.paragraph-section p {
text-align: justify;
margin: 0;
}
.paragraph-section p::first-letter {
font-size: 2rem;
color: red;
}
.paragraph-section p::first-line {
font-weight: bold;
}
.paragraph-section p::selection {
background-color: red;
color: white;
}