-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (89 loc) · 1.96 KB
/
index.css
File metadata and controls
107 lines (89 loc) · 1.96 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
/*@import url('fonts.css');*/
body{
margin: 0%;
box-sizing: border-box;
overflow-x: hidden;
background-color: var(--white);
color: whitesmoke;
}
:root{
/* coulors Theme */
--text-gray: #3f4954;
--text-light : #686666da;
--bg-color: #0f0f0f;
--white: #ffffff;
--midnight: #104f55;
/* coulor gradient */
--sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
/* théme font-family */
--Abel: 'Abel', cursive;
--Anton: 'Anton', cursive;
--Josefin : 'Josefin', cursive;
--Lexend: 'Lexend', cursive;
--Livvic : 'Livvic', cursive;
}
/* --------------- navbar ----------------- */
.nav{
background: var(--bg-color);
color: var(--white);
padding: 0 2rem;
height: 0rem;
min-height: 10vh;
}
.nav a{
font-size: 1.4rem;
padding: 1rem 0;
display: block;
font-size: 1.5rem;
}
.nav a:hover{
color: var(--white)
}
/* -------x------- navbar ---------x------- */
/* ----------------- Main Content----------- */
main {
background-color: var(--bg-color);
margin: auto;
padding: 7%;
border-radius: 50rem 20rem 30rem;
width: 40%;
color: var(--midnight);
}
.site-title{
padding: 5%;
display: flex;
justify-content: center;
}
/* ---------x------- Main Content -----x----- */
/* ---------------- Global Classes ---------------*/
.montant {
display: flex;
justify-content: space-between;
margin: 5px;
}
a{
text-decoration: none;
color: var(--text-gray);
}
h1{
font-size: 1.5rem;
}
.btn{
border: none;
border-radius: 2rem;
padding: 1rem 3rem;
font-size: 1rem;
cursor: pointer;
background-color: var(--midnight);
color: var(--white);
}
select{
border: none;
border-radius: 1rem;
padding: 1rem 1rem;
font-size: 1rem;
cursor: pointer;
background-color: var(--midnight);
color: var(--white);
}
/* ------x------- Global Classes -------x-------*/