-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
78 lines (75 loc) · 1016 Bytes
/
style.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
70
71
72
73
74
75
76
77
78
html
{
background-color:black;
}
body
{
font-family: sans-serif;
font-size: 1em;
line-hieght: 1.5em;
}
#im1
{
width: 50%;
border-radius: 30px;
transform:scale(0.7);
}
#im2
{
border-radius: 30px;
transform:scale(0.9);
transform:translate(100px,-100px);
}
h1
{
text-align: center;
padding-top: 20px;
text-transform: uppercase;
color: #ffd88e;
}
h2
{
color: red;
padding-top: 20px;
text-transform: uppercase;
}
#main
{
border-radius: 50px;
background-color: yellow;
padding: 0cm 1em 1em;
padding-top: 10px;
}
#foo
{
text-align: center;
color: white;
text-size: 0.55em;
}
#menu
{
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#item
{
float: left;
}
a:link, a:visited
{
display:block;
width: 120px;
font-weight: bold;
color: white;
background-color: black;
text-align: center;
padding: 4px;
text-decoration: none;
text-transform: uppercase;
}
a:hover, a:active
{
color: red;
}