-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (66 loc) · 1.58 KB
/
styles.css
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
/* Tag selectors should be used broadly
ID = can only be used once throughout an entire css / html file
should be used sparingly or never should be used
Class = Group of related items, can be used as many times as required
ID can the be used within classes to alter individual items
Multiple different ID's can be used but not the same id multiple
times. The same html element can only contain one ID as well.
However, Multiple classes can be used within the same html element
Both of these items will both over ride general css code for example
the body selector below will be overridden if the body has a class
or id specifying alternative details.
*/
body
{
background-color: #97D2EC;
font-family: "Open Sans", serif;
font-style: normal;
font-size: large;
}
/*
hr
{
border-color:white;
border-width:10px;
border-style: none;
border-top-style: dotted;
height: 4px;
width: 10%;
}
*/
hr
{
border-color:white;
border-width:4px;
border-style: none;
border-top-style:solid;
}
h2{
color: #0081C9;
font-family: cursive;
font-size: xx-large;
}
h3
{
color: #0081C9;
}
/*
This is a sudo class that effects certain actions,
for example :hover is the most popular that effects only
when the mouse is hovering over a certain element.
*/
a:hover{
color: red;
}
input{
background-color: #97D2EC;
}
input:hover{
background-color: white;
}
textarea{
background-color: #97D2EC;
}
textarea:hover{
background-color: white;
}