d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Graphic Design > Nero, Shut Up And Rice: Gaiden > The Saga Of Css/html
Prev12345Next
Add Reply New Topic New Poll
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 9 2015 06:42am
http://imgur.com/a/jqjeo

Needs a bit of work still, but it'll do for tonight. Thanks to middy for the icon theme in my settings panel.
Member
Posts: 11,881
Joined: Aug 17 2007
Gold: 0.00
Jul 9 2015 10:36am
Mobile theming is bae.

Edit: When you get the chance, I'd recommend giving Cydget a whirl for your LS themes. It allows one to implement "standard" HTML/Javascript LS setups with the added bonus of being able to work with iOS information.
Thanks to Cycript, which bridges access to Objective-C, Cydget widgets can access and display battery, weather, contact information, etc. This eliminates the need for additional tweaks such as InfoStats

Since I started using Cydget, I tend to include battery levels on all of LSs, which is pretty neat.

It's basically one line of code:

Code
var battery = Math.round([[UIDevice currentDevice] batteryLevel] * 100); //get battery


e.g.



This post was edited by MidnightRider on Jul 9 2015 10:43am
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 9 2015 04:08pm
I don't think cydget is functioning in 8.4, but I could be mistaken
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 10 2015 04:03am
writing another app launcher for the homescreen. while i'm playing around with this i'll be looking into figure out how to link directly to app-ids from the homescreen without having to buffer with transparent widgets

Code
body{
margin: 0;
padding: 0;
color:242424;
font-weight:normal;
font-family:Normal;
}

@font-face {
font-family: Normal;
src: url("Images/Mission Gothic Thin.otf") format("opentype");
}

@font-face {
font-family: Slanted;
src: url("Images/Mission Gothic Thin Italic.otf") format("opentype");
}

.slant{
font-family: Slanted;
color: #242424;
}

.btn{
margin-left: auto;
margin-right: auto;
position: relative;
font-family: Slanted;
top:7%;
width: 80%;
height: 9%;
color: #535353;
font-size: 20px;
background: #e9e9e9;
}

.anchor{
margin-left: auto;
margin-right: auto;
position: relative;
font-family: Slanted;
top:7%;
width: 80%;
height: 9%;
color: #535353;
font-size: 20px;
background: #f25453;
}

.blank{
background: black;
opacity: 0;
width: 100%;
height: 2%
}

#lover{
position: absolute;
bottom: 3.5%;
margin-left: 10%;
width: 40%;
height: 0.25%;
background: #f25453;
}


Code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="Style.css" type="text/css" media="screen" />
<!--put your scripts in, fuccboi-->
<!--atom sugs benis-->
<!-- toni @ jsp-->

</head>

<body onload ="init()">

<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="btn"></div>
<div class="blank"></div>
<div class="anchor"></div>
<div id="lover"></div>
</body>
</html>


http://i.imgur.com/x4zCojS.png
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 10 2015 11:54pm
is there anyway i can cause a class (for span in particular) to ignore inherited elements from a parent class (div, specifically)?
Member
Posts: 4,678
Joined: Jul 7 2007
Gold: 9,529.00
Jul 11 2015 09:34am
.class{
rule: value !important;
}

write over the rule you are trying to ignore. Unless it is positioning you are trying to ignore, that is fairly tricky.

Also, why are you adding a blank after every button? just give the button some lower margin and use half the divs. Also use <ul><li> instead of a fake list of buttons, it will clean this up dramatically.

This post was edited by Tetu_880 on Jul 11 2015 09:36am
Member
Posts: 4,082
Joined: Jan 17 2014
Gold: Locked
Jul 11 2015 10:53am
I can read and understand all the css/html PERFECTLY, I practiced trying to write it for 2 months, couldn't do it. gl :D
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 11 2015 10:48pm
Quote (Tetu_880 @ Jul 11 2015 07:34am)
.class{
rule: value !important;
}

write over the rule you are trying to ignore. Unless it is positioning you are trying to ignore, that is fairly tricky.

Also, why are you adding a blank after every button? just give the button some lower margin and use half the divs. Also use <ul><li> instead of a fake list of buttons, it will clean this up dramatically.


because i dont know what im doing
Member
Posts: 11,570
Joined: Oct 8 2007
Gold: 1,000.00
Jul 12 2015 03:49am
Quote (Nereaux @ Jul 11 2015 10:48pm)
because i dont know what im doing


so cute
Member
Posts: 17,374
Joined: Jul 6 2007
Gold: 12,143.67
Jul 12 2015 04:17am
Quote (DB_odin @ Jul 12 2015 01:49am)
so cute


fug off grug
Go Back To Graphic Design Topic List
Prev12345Next
Add Reply New Topic New Poll