This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (92 loc) · 1.57 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
112
113
114
body {
background-color: #282C34;
color : #ABA58E;
font-family: 'Itim';
text-shadow:0px 0px 3px rgba(0, 0, 0, 0.945);
}
h2 {
color : #7BC379;
margin-left : 10px;
font-size: 200%;
text-shadow: 1px 1px 5px black;
}
header {
text-align: center;
font-size: 220%;
color: #43A3EF;
text-shadow: #4682B4 2px 2px 3px;
width: 100%;
padding: 0;
top: 0;
left: 0;
overflow: hidden;
position: fixed;
}
header, footer {
background-color: rgba(27, 27, 27, 0.781);
font-family: "Saira";
}
footer {
bottom: 0;
left: 0;
width: 100%;
overflow: hidden;
position: fixed;
text-align: center;
}
button, #home {
background-color: #43A3EF;
height: 50px;
width: 150px;
border: 2px solid black;
font-family: 'Caveat';
font-size: 150%;
}
button:hover, #home:hover {
color : white;
}
.code {
color: wheat;
font-family: 'Consolas';
}
img {
display: block;
margin: 12px;
}
.blocQuestion {
padding : 15px;
}
body:last-child {
margin-bottom: 40px;
}
h2:first-child {
margin-top : 80px;
}
label {
margin-left: 20px;
}
input {
margin-left: 10px;
}
#home {
float:left;
text-decoration: none;
font-size : 100%;
color: black;
}
em {
margin-right : 10px;
color: wheat;
}
@font-face {
font-family: "Saira";
src : url("fonts/SairaStencilOne-Regular.ttf");
}
@font-face {
font-family: "Itim";
src : url("fonts/Itim-Regular.ttf");
}
@font-face {
font-family: "Caveat";
src : url("fonts/Caveat-Regular.ttf");
}