Steelskull commited on
Commit
c7de5ec
·
verified ·
1 Parent(s): 3f1f027

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -23
README.md CHANGED
@@ -29,7 +29,7 @@ pinned: false
29
  display: flex;
30
  align-items: center;
31
  justify-content: center;
32
- padding: 20px;
33
  }
34
  .container {
35
  width: 100%;
@@ -38,52 +38,53 @@ pinned: false
38
  border-radius: 20px;
39
  box-shadow: 0 0 30px rgba(34, 124, 157, 0.15);
40
  border: 1px solid #227C9D;
41
- padding: 40px;
42
- margin: 20px;
43
  }
44
  .logo {
45
- width: 200px;
46
  height: auto;
47
- margin: 0 auto 40px;
48
  display: block;
49
  border-radius: 16px;
50
  }
51
  h1, h2, h3 {
52
  color: #227C9D;
53
- margin-bottom: 20px;
54
  font-weight: 500;
55
  }
56
  h1 {
57
- font-size: 36px;
58
  text-align: center;
59
  text-transform: uppercase;
60
  letter-spacing: 2px;
61
  }
62
  h2 {
63
- font-size: 24px;
64
  border-bottom: 2px solid #227C9D;
65
  padding-bottom: 10px;
66
- margin-top: 30px;
67
  }
68
  p {
69
- margin-bottom: 20px;
70
  line-height: 1.8;
 
71
  }
72
  .content-section {
73
  background-color: #141414;
74
  border-radius: 12px;
75
- padding: 20px;
76
- margin: 20px 0;
77
  border: 1px solid rgba(34, 124, 157, 0.1);
78
  }
79
  .team-grid {
80
  display: grid;
81
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
82
- gap: 20px;
83
- margin: 20px 0;
84
  }
85
  .team-member {
86
- padding: 20px;
87
  border-radius: 10px;
88
  background-color: rgba(34, 124, 157, 0.15);
89
  border: 1px solid #227C9D;
@@ -92,6 +93,7 @@ pinned: false
92
  text-decoration: none;
93
  color: #FFFFFF;
94
  display: block;
 
95
  }
96
  .team-member:hover {
97
  transform: translateY(-5px);
@@ -107,6 +109,12 @@ pinned: false
107
  .team-member h3 {
108
  color: #FFFFFF;
109
  margin-bottom: 10px;
 
 
 
 
 
 
110
  }
111
  .team-member:nth-child(odd) h3 {
112
  color: #227C9D;
@@ -118,13 +126,16 @@ pinned: false
118
  display: inline-block;
119
  background-color: #227C9D;
120
  color: #FFFFFF;
121
- padding: 12px 24px;
122
  border-radius: 8px;
123
  text-decoration: none;
124
  font-weight: 500;
125
  transition: all 0.3s ease;
126
  text-align: center;
127
  margin: 10px 0;
 
 
 
128
  }
129
  .button:hover {
130
  background-color: #00A676;
@@ -133,20 +144,37 @@ pinned: false
133
  }
134
  ul {
135
  list-style-position: inside;
136
- margin-left: 20px;
137
- margin-bottom: 20px;
138
  }
139
  li {
140
- margin-bottom: 10px;
 
141
  }
142
  .org-name {
143
  text-align: center;
144
- margin-bottom: 30px;
145
  }
146
  .description {
147
  text-align: center;
148
  max-width: 600px;
149
- margin: 0 auto 40px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
  </style>
152
  </head>
@@ -154,7 +182,7 @@ pinned: false
154
  <div class="container">
155
  <!-- <img src="" alt="BeaverAI Logo" class="logo"> -->
156
  <h1>BeaverAI</h1>
157
- <p class="description"> A bunch of misfits discover finetuning.</p>
158
  <div class="content-section">
159
  <h2>Join Our Community</h2>
160
  <p>Connect with us and other developers and enthusiasts on our Discord server:</p>
 
29
  display: flex;
30
  align-items: center;
31
  justify-content: center;
32
+ padding: 10px;
33
  }
34
  .container {
35
  width: 100%;
 
38
  border-radius: 20px;
39
  box-shadow: 0 0 30px rgba(34, 124, 157, 0.15);
40
  border: 1px solid #227C9D;
41
+ padding: 20px;
42
+ margin: 10px;
43
  }
44
  .logo {
45
+ width: 150px;
46
  height: auto;
47
+ margin: 0 auto 30px;
48
  display: block;
49
  border-radius: 16px;
50
  }
51
  h1, h2, h3 {
52
  color: #227C9D;
53
+ margin-bottom: 15px;
54
  font-weight: 500;
55
  }
56
  h1 {
57
+ font-size: clamp(24px, 5vw, 36px);
58
  text-align: center;
59
  text-transform: uppercase;
60
  letter-spacing: 2px;
61
  }
62
  h2 {
63
+ font-size: clamp(20px, 4vw, 24px);
64
  border-bottom: 2px solid #227C9D;
65
  padding-bottom: 10px;
66
+ margin-top: 25px;
67
  }
68
  p {
69
+ margin-bottom: 15px;
70
  line-height: 1.8;
71
+ font-size: clamp(14px, 3vw, 16px);
72
  }
73
  .content-section {
74
  background-color: #141414;
75
  border-radius: 12px;
76
+ padding: 15px;
77
+ margin: 15px 0;
78
  border: 1px solid rgba(34, 124, 157, 0.1);
79
  }
80
  .team-grid {
81
  display: grid;
82
+ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
83
+ gap: 15px;
84
+ margin: 15px 0;
85
  }
86
  .team-member {
87
+ padding: 15px;
88
  border-radius: 10px;
89
  background-color: rgba(34, 124, 157, 0.15);
90
  border: 1px solid #227C9D;
 
93
  text-decoration: none;
94
  color: #FFFFFF;
95
  display: block;
96
+ text-align: center;
97
  }
98
  .team-member:hover {
99
  transform: translateY(-5px);
 
109
  .team-member h3 {
110
  color: #FFFFFF;
111
  margin-bottom: 10px;
112
+ font-size: clamp(16px, 3vw, 18px);
113
+ word-break: break-word;
114
+ }
115
+ .team-member p {
116
+ font-size: clamp(12px, 2.5vw, 14px);
117
+ margin-bottom: 0;
118
  }
119
  .team-member:nth-child(odd) h3 {
120
  color: #227C9D;
 
126
  display: inline-block;
127
  background-color: #227C9D;
128
  color: #FFFFFF;
129
+ padding: 10px 20px;
130
  border-radius: 8px;
131
  text-decoration: none;
132
  font-weight: 500;
133
  transition: all 0.3s ease;
134
  text-align: center;
135
  margin: 10px 0;
136
+ width: 100%;
137
+ max-width: 300px;
138
+ font-size: clamp(14px, 3vw, 16px);
139
  }
140
  .button:hover {
141
  background-color: #00A676;
 
144
  }
145
  ul {
146
  list-style-position: inside;
147
+ margin-left: 15px;
148
+ margin-bottom: 15px;
149
  }
150
  li {
151
+ margin-bottom: 8px;
152
+ font-size: clamp(14px, 3vw, 16px);
153
  }
154
  .org-name {
155
  text-align: center;
156
+ margin-bottom: 25px;
157
  }
158
  .description {
159
  text-align: center;
160
  max-width: 600px;
161
+ margin: 0 auto 30px;
162
+ }
163
+ @media (max-width: 480px) {
164
+ .container {
165
+ padding: 15px;
166
+ margin: 5px;
167
+ }
168
+ .team-grid {
169
+ grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
170
+ gap: 10px;
171
+ }
172
+ .team-member {
173
+ padding: 10px;
174
+ }
175
+ .content-section {
176
+ padding: 12px;
177
+ }
178
  }
179
  </style>
180
  </head>
 
182
  <div class="container">
183
  <!-- <img src="" alt="BeaverAI Logo" class="logo"> -->
184
  <h1>BeaverAI</h1>
185
+ <p class="description">A bunch of misfits discover finetuning.</p>
186
  <div class="content-section">
187
  <h2>Join Our Community</h2>
188
  <p>Connect with us and other developers and enthusiasts on our Discord server:</p>