-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyles.css
111 lines (91 loc) · 1.41 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
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
html, body{
padding: 0;
margin: 0;
height: 100%;
width: 100%;
font-family: "arial";
letter-spacing: 1px;
word-spacing: 3px;
}
.main-container{
min-height: 100%;
}
.header, .footer, .push{
height: 70px;
text-align: center;
position:relative;
z-index:5;
}
h2{
text-align: center;
}
p{
text-align: justify;
}
.header, .footer, .footer a{
background: black;
color: white;
transition: text-shadow 0.5s ease;
-moz-transition: text-shadow 0.5s ease;
-webkit-transition: text-shadow 0.5s ease;
}
.footer{
margin-top: -70px;
}
.panel-box{
max-width: 1000px;
margin: auto;
position: relative;
z-index: 10;
}
.panel,.header,.footer{
}
.panel{
padding: 10px;
}
h1{
font-size: 4em;
font-weight: 100;
}
a{
text-decoration: none;
background: black;
color: white;
padding: 20px;
display: inline-block;
}
.footer a:hover{
text-shadow: 2px 2px 10px rgb(0, 208, 224), -2px -2px 10px rgb(255, 199, 199), 0 0 15px white;
}
code{
text-align: left;
background: none !important;
}
pre{
background: rgba(46, 55, 148, 0.1);
padding: 10px;
overflow-x: auto;
}
@media (max-width: 550px) {
#fork-me{
display:none;
}
}
.small-clock{
height: 100%;
width: 100%;
max-height: 200px;
max-width: 200px;
display:inline-block;
}
#performance-test a{
background: none;
color: black;
font-weight: bolder;
text-decoration: underline;
}
@media(max-width: 900px){
#performance-test{
display: none;
}
}