Create styless.css
Browse files- styless.css +62 -0
styless.css
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
display: flex;
|
| 4 |
+
justify-content: center;
|
| 5 |
+
align-items: center;
|
| 6 |
+
height: 100vh;
|
| 7 |
+
background-color: #f0f0f0;
|
| 8 |
+
margin: 0;
|
| 9 |
+
}
|
| 10 |
+
|
| 11 |
+
.card {
|
| 12 |
+
background-color: #fff;
|
| 13 |
+
border-radius: 10px;
|
| 14 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
| 15 |
+
overflow: hidden;
|
| 16 |
+
width: 350px;
|
| 17 |
+
text-align: center;
|
| 18 |
+
margin: 20px;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.logo-container {
|
| 22 |
+
background-color: #f7f7f7;
|
| 23 |
+
padding: 20px;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.logo {
|
| 27 |
+
width: 100px;
|
| 28 |
+
height: 100px;
|
| 29 |
+
border-radius: 50%;
|
| 30 |
+
object-fit: cover;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.content {
|
| 34 |
+
padding: 20px;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
.company-name {
|
| 38 |
+
margin: 0;
|
| 39 |
+
font-size: 1.5em;
|
| 40 |
+
color: #333;
|
| 41 |
+
}
|
| 42 |
+
|
| 43 |
+
.description {
|
| 44 |
+
font-size: 1em;
|
| 45 |
+
color: #666;
|
| 46 |
+
margin: 10px 0;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.social-media {
|
| 50 |
+
margin-top: 15px;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.social-icon {
|
| 54 |
+
width: 30px;
|
| 55 |
+
height: 30px;
|
| 56 |
+
margin: 0 5px;
|
| 57 |
+
transition: transform 0.2s;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.social-icon:hover {
|
| 61 |
+
transform: scale(1.2);
|
| 62 |
+
}
|