-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (81 loc) · 1.33 KB
/
styles.css
File metadata and controls
102 lines (81 loc) · 1.33 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
::-webkit-scrollbar {
width: 5px;
background-color: hsl(0, 0%, 0%);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
background-color: hsl(0, 0%, 40%);
}
body{
margin: 0;
color: hsl(0, 0%, 100%);
}
#canvas{
background-color: hsl(0, 0%, 0%);
padding: 0 50px;
}
div.img{
text-align: center;
}
div.subGroup{
margin: 0 30px;
}
#wrapper{
background-color: hsl(0, 0%, 15%);
margin: 0 30px;
padding: 30px 20px;
box-shadow: 0 0 10px 10px hsl(0, 0%, 15%);
}
#content{
margin-top: 230px;
}
#header{
position: absolute;
background-color: hsl(0, 0%, 30%);
left: 0;
right: 0;
top: 0;
bottom: 0;
padding-left: 90px;
}
div{
font-family: Helvetica, sans-serif;
}
figure{
display: inline-block;
}
p{
font-size: 20px;
margin-left: 30px;
}
div.caption{
margin: 0;
color: hsl(0, 0%, 70%);
}
h3{
margin-top: 60px;
font-family: Arial, sans-serif;
text-shadow: 1.5px 1.5px hsl(0, 0%, 0%);
}
h2{
font-family: Arial, sans-serif;
text-shadow: 2px 2px hsl(0, 0%, 0%);
}
h1{
font-family: Arial, sans-serif;
text-shadow: 2px 2px hsl(0, 0%, 0%);
}
table{
width: 100%;
font-size: 15px;
margin-left: 20px;
}
img{
margin-left: auto;
margin-right: auto;
}