forked from jamesshore/lets_code_javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen.css
More file actions
119 lines (106 loc) · 1.97 KB
/
screen.css
File metadata and controls
119 lines (106 loc) · 1.97 KB
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
112
113
114
115
116
117
118
119
body {
background-color: #41a9cc;
font-family: "alwyn-new-rounded-web", "Helvetica", sans-serif;
font-weight: 300;
}
#logo {
margin-top: 12px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
text-align: center;
font-size: 22px;
font-weight: 600;
color: white;
}
#tagline {
margin-top: 5px;
margin-bottom: 0px;
text-align: center;
font-size: 14px;
color: #0d576d;
}
#drawing-area {
height: 600px;
background-color: white;
border-radius: 2px;
}
#drawing-area-container {
width: 980px;
margin-top: 10px;
margin-left: auto;
margin-right: auto;
position: relative;
}
#drawing-area-arrow {
background-image: url(/images/arrow.png);
background-repeat: no-repeat;
background-position: center;
height: 9px;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
}
#clear-button {
font-family: "alwyn-new-rounded-web", "Helvetica", sans-serif;
font-weight: 600;
font-size: 12px;
position: absolute;
top: 15px;
right: 15px;
border: none;
padding: 0;
margin: 0;
color: #595959;
background-color: #e5e5e5;
height: 30px;
line-height: 30px;
width: 70px;
border-radius: 2px;
box-shadow: 0 1px 0 0 #a7a9ab;
text-transform: uppercase;
}
#clear-button:hover, #clear-button._hover_ {
background-color: #d9d9d9;
}
#clear-button:active, #clear-button._active_ {
top: 16px;
box-shadow: none;
}
#footer {
text-align: center;
margin-top: 13px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
font-size: 15px;
color: white;
}
#join-us {
font-weight: 400;
font-size: 16px;
display: block;
text-align: center;
margin-top: 13px;
margin-left: auto;
margin-right: auto;
color: white;
background-color: #00799c;
height: 35px;
line-height: 35px;
width: 175px;
border-radius: 2px;
box-shadow: 0 1px 0 0 #0d576d;
vertical-align: middle;
text-decoration: none;
text-transform: uppercase;
}
#join-us:hover, #join-us._hover_ {
background-color: #006f8f;
}
#join-us:active, #join-us._active_ {
box-shadow: none;
position: relative;
top: 1px;
}