This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (105 loc) · 1.91 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
115
116
117
118
119
120
121
122
123
124
/*
* Jeu Pang (Avril 2019)
* script.js
*
* Author: Fabian Devel, Nathanaël Houn, Valentin Perignon
*/
/* Général */
html, body {
margin: 0;
padding: 0;
}
body {
background-color: white;
font-family: sans-serif;
}
h1 {
font-size: 20px;
}
/* About body */
#about-body {
background-color: rgba(0, 100, 240, 0.4);
}
/* Title */
#title {
padding: 20px 20px;
background-color: rgb(0, 100, 240);
}
#title h1 {
margin: 0;
font-weight: lighter;
font-size: 20px;
color: #FFF;
}
/* Subtitle */
.subtitle {
padding: 10px 20px;
background: rgb(0, 60, 255);
}
.subtitle h2 {
margin: 0;
font-weight: 600;
font-size: 17px;
color: #FFF;
}
/* Content */
#content {
width: 1086px;
margin: 50px auto;
}
/* About */
#about {
margin-top: 15px;
text-align: center;
}
/* Text content */
.text_content {
padding: 5px 20px;
}
/* Cow lists */
ul {
padding-left: 0px;
}
li {
display: list-item;
list-style: disc url('assets/cow.png') inside;
}
/* Canvas */
#cvs {
border: 3px solid #000a12;
border-radius: 10px;
background: url('assets/bg_fac.jpg');
}
/* Hidden block */
.hidden {
display: none;
}
/* Old buttons
* source : https://codepen.io/shdwjk/pen/OWpbNN
*/
.oldkey {
border-radius: 10px;
background: -webkit-radial-gradient( center, #FAF6F3,#FAF6F3, #D8C8B7);
border-style: solid;
border-width: 8px;
border-color: #E7DBD0 #DACABB #BFAF9D #F6EDE5;
display: inline-block;
min-width: 3em;
height: 3em;
line-height: 3em;
font-weight: bold;
font-family: sans-serif;
vertical-align: middle;
text-align: center;
color: #222;
margin: .1em;
cursor: pointer;
}
.oldkey:hover {
box-shadow: .1em .1em .3em .2em #666;
background: -webkit-radial-gradient( center,#FAF6F3,#FAF6F3, #BFAF9D);
}
.oldkey span {
padding-left: 1em;
padding-right: 1em;
}