-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (100 loc) · 1.56 KB
/
style.css
File metadata and controls
119 lines (100 loc) · 1.56 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
html {
font-size: 100%;
}
body {
background-color: rgb(50,50,50);
}
/*********/
/* Fonts */
/*********/
@font-face {
font-family: TitleFont;
src: url('fonts/Caviar-Dreams/CaviarDreams.ttf');
}
@font-face {
font-family: TextFontLight;
src: url('fonts/fira-code/static/FiraCode-Light.ttf');
}
@font-face {
font-family: TextFontBold;
src: url('fonts/fira-code/static/FiraCode-SemiBold.ttf');
}
h1 {
font-family: TitleFont;
}
h2, p {
font-family: TextFontLight;
}
h1, h2 {
font-weight: 400;
color: rgb(250,250,250);
}
h1, h2 {
letter-spacing: 0.5em;
}
h1 {
font-size: 3em;
}
h2 {
font-size: 2em;
}
p {
font-size: 1em;
color: rgb(150,150,150);
}
/**************/
/* Composants */
/**************/
.card {
width: 33%;
margin-right: 5em;
}
.field {
height: 3em;
background-color: rgb(150,150,150);
color: rgb(50,50,50);
font-size: 1em;
padding: 0 1em;
border: 0;
margin: 1em 1em 0 0;
}
#picture {
width: 100%;
}
.button {
background-color: rgb(50,50,50);
border: 0.1em solid red;
width: 5em;
height: 5em;
border-radius: 50%;
color: rgb(250,250,250);
box-shadow: 0 0 0.4em rgb(150,150,150);
}
.button:hover {
box-shadow: inset 0 0 0.4em rgb(150,150,150);
cursor: pointer;
transition: 1s ease-out 1s;
}
/*******/
/* Div */
/*******/
.container {
width: 50%;
margin: 0 auto;
}
.text-center {
text-align: center;
}
.box-between {
display: flex;
justify-content: space-between;
}
#header {
display: flex;
justify-content: left;
align-items: center;
padding: 1em;
}
#result {
list-style: none;
}