resources & design

Resources blog. Angel, 14, China. I code, I write, and I sleep a lot. That's about it. Here, you'll find resources of all kinds, from writing to coding to photoshop! I hope you'll find something that will be useful for you.
01.02.03.04.05.06.
run by angel
antivian:
“ antivian:
“ When I was first starting the whole process of finding applying to colleges, I was blessed enough to attend one of the best charter schools in the country, with several great teachers and a CAP Advisor that put so much time...

antivian:

antivian:

When I was first starting the whole process of finding applying to colleges, I was blessed enough to attend one of the best charter schools in the country, with several great teachers and a CAP Advisor that put so much time and effort into helping us figure out what we were going to do with our futures. I know not everyone is so lucky to have access to the same sort of people or resources, so here’s a long masterpost of many useful links and lots of great information you can use. If you ever want advice or to talk about college, feel free to message me!

Guides and Articles to Help Decision Making and Overall Process

For High School Students

For Students in Florida

For College Students

GED

SAT

ACT

TOEFL

Financial Aid

Student Loans

Saving, Managing, and Making Money

Scheduling Courses

High-Quality Studying+Productivity Resources (FOR FREE!)

Writing Essays + Papers

Other Helpful Resources

plaantastic-deactivated20160511: Do you know any blogs with good backgrounds? ahh sorry to ask! btw, love your themes c:

evabadon-deactivated20160215:

Thank you!

I hope this helps!

oopstroye:
“ Under the cut you’ll find a bunch of links to tutorials, mostly on tumblr blogs. There are 4 sections - HTML/Tumblr, Gif tutorials, editing pictures, and graphics/typography. Please like or reblog if this is useful to you :)
Read More
”

oopstroye:

Under the cut you’ll find a bunch of links to tutorials, mostly on tumblr blogs. There are 4 sections - HTML/Tumblr, Gif tutorials, editing pictures, and graphics/typography. Please like or reblog if this is useful to you :)

Read More

Only themes rec you’ll need

gryffindour:

I made a list with tons of amazing thememakers, check it here

They’re bolded and divided if they make simple or complex themes

Please like or reblog to spread the world because I worked really hard on it!! Thank youu

whatcatsays:

I made a masterlist of FAQ+ASK themes for levinethings and decided to share. Enjoy.

marvllous:
“Lately, some friends asked me about great theme makers I know and I wasn’t able to pick my favorites because there are so many theme makers I admire and I’m not a person to keep my theme for a long time (as you’ve probably noticed),...

marvllous:

Lately, some friends asked me about great theme makers I know and I wasn’t able to pick my favorites because there are so many theme makers I admire and I’m not a person to keep my theme for a long time (as you’ve probably noticed), simply because there are soooo many amazing themes. Therefore, I collected some theme makers. 

IMPORTANT: Please appreciate their hard work - don’t steal, claim as your own or remove the credit! (To know all the details always read the rules, please)

Themes

vitanica | eclipse | syncode | lostmemento

wildthemes | hollywhood | perfectic

winchestheart | taurielic |  nutty

hawtornes | olle ota | claepsydra

septembre | stratfor-d | secondrisen

cryo | armyofghosts | cleamour

billieplper | zulal | gallifreystars

athlstan | jensenakles | britishrobert

neonbike | draculahsaeterno

str-wrs | stves | mrsmilicevic

afwthemes | paynex | everlark

chipotleigh | slutjensen | buckybahnes

deanlirium | tinyxo | chnspine

worthythor | myackles | ohstrax

castiiel | tomkirk | trenzathemes

doriangaay | scientificali | claraosmin

Some additional codes (Navi/About/Updates/etc)

about 1 | page flip animation

tags 1 | blogroll 1 | tags 2

about 2 | about 3 | updates 1

about 4 | updates 2 | updates 3 

about 4 | updates 4 | hover tab images 

updates 5 | blogroll 2 | updates 6

blogroll 3 | all-in-one 1 | tags 3

all-in-one 2 | all-in-one 3 | updates 7

Have fun finding something you like in this post, and if a link is not working properly, please message me!  Hope I could help :)

“How do I add music to your theme?”

riverbellthemes:

I get these questions a lot, even though I’ve actually stated in my FAQ that I don’t know how these music players work, since I’ve never installed one myself (it’s nice to know you are reading the FAQ, guys). 

So my short answer is: I don’t know.

But I’m going to be really nice and do some research for you. And from now on I won’t be answering any more questions about music players.

There are actually some pretty simple instructions on the Billy player’s web page

But here’s more: GyapoYukoki and Ixora have written great tutorials on this. 

But wait, there’s still more! If you want to style the audio player, there are tutorials written for that too! Here, here and here are some by Gyapo (bless you). Here, here and here are some by Fukuo. And here are some music gifs.

This is a freaking awesome masterpost for music players/tabs!!

If you still can’t figure out how to do it. Try again. I, and so many other themes makers with me, are self taught. We learnt by trial and error. So I’m sure you can to!

And now, I won’t be answering any more questions about music players. Have a great day!

I’m stressin over college so I’m making an application masterpost

whyyy-colleges-whyyy:

Essay writing advice

Choosing a university

Extracurriculars on the common app

Early Action vs Early Decision

The whole proccess

Improve your activities list

List of other college app blogs

Woah a thing for art school portfolios

Masterpost within a masterpost (this one has so much stuff, 10/10 would reccomend)

Prepare for college

SAT ACT GRE preparation Free

College application tips

As I come across more stuff I will add on to this. Good luck my friends.

CSS goodies to use in your theme now

buildthemes:

Here are some CSS goodies I’ve been using a couple of my themes and are perfect to add to your themes for a polished look.

Change up the selection color

Example of highlighted text with new color

Don’t stick with the drab defaults that show in your browser when you highlight stuff. A simple CSS snippet below (thanks HTML5 Boilerplate) can be used to change the color:

::-moz-selection { background: #f2f2f2; color: #fff; }
::selection { background: #f2f2f2; color: #fff; }

Replace #f2f2f2 with your color of choice.

Get fancy blockquotes

Homepage of CSS Arrow Please!

So you’ve tried all the possible CSS styles to add to quotes?

Make your own pure CSS arrows with CSS Arrow Please which automatically generates CSS based on your inputs. Just change .arrow_box to whatever the class you’re using for your blockquotes to add this interesting effect.

Sweet transparency

If you aren’t aware you can use RGBA colors to add transparency.

The RGB part you might be familiar with, it’s the red, green and blue mix for the color. The cool stuff happens with the A (alpha), use this to set a transparency to the color.

Here’s an example. In the CSS I’ve set the background color of the object like this:

#promo_box {
background-color: rgba(0, 0, 0, 0.9);
}

image

Notice how instead of just making the background pitch black, it’s made it a bit transparent, just what we wanted.

Shadows: back in black

image

CSS3 introduces box shadows, you’ve probably already seen it in a couple of themes already.

The properties that ‘box-shadow’ takes, shown below, are horizontal offset, vertical offset, blur radius, spread distance and color.

article {
box-shadow: 0 0 5px -3px #000000;
}
emilysgilmores:
“ Finding icons can be hard business, therefore I wanted to make a resource list of bloggers who make Teen Wolf icons so they’re easily accessible to everyone. Below the cut there are 40+ icon makers. Enjoy!
Read More
”

emilysgilmores:

Finding icons can be hard business, therefore I wanted to make a resource list of bloggers who make Teen Wolf icons so they’re easily accessible to everyone. Below the cut there are 40+ icon makers. Enjoy!

Read More

THEME ♥