-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (95 loc) · 1.5 KB
/
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
font-family: Helvetica, Arial, sans-serif;
border-top: 5px solid #4c4066;
margin: 0px auto;
font-size: 14px;
color: #666666;
}
a {
text-decoration: none;
}
header {
text-align: center;
background-color: #fdfdfd;
border-bottom: 1px solid #e5e2e0;
}
button {
padding: 10px;
margin: 10px;
border: none;
font-size: 1.4em;
}
#logo {
position: relative;
top: -2px;
}
h1 {
color: #3b3b3b;
font-size: 3em;
}
#container {
width: 1040px;
margin: 0px auto;
min-height: 750px;
}
input[type='text'] {
height: 2.2em;
font-size: 2em;
width: 400px;
padding: 5px;
}
input[type='text']:before {
content: "Joe's Task:";
}
.row {
margin-top: 50px;
height: 100px;
}
.row .column {
display: inline-block;
vertical-align: top;
width: 480px;
}
#colors .item {
display: inline-block;
padding: 10px;
height: 90px;
width: 90px;
color: white;
font-size: 0.7em;
text-transform: uppercase;
font-weight: bold;
}
.prefix {
font-size: 3em;
color: black;
padding-bottom: 2px;
padding-right: 10px;
}
.preview {
height: 400px;
width: 400px;
padding: 20px;
border: 1px solid #bebebe;
font-size: 1.4em;
color: white;
font-weight: bold;
text-transform: uppercase;
}
.color-code {
padding: 10px;
margin-top: 10px;
font-size: 2.5em;
display: inline-block;
font-weight: bold;
}
footer {
padding-bottom: 10px;
border-bottom: 5px solid #4c4066;
position: absolute;
width: 100%;
}
footer #content {
width: 1040px;
margin: 0px auto;
}