forked from franck403/geoloup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (101 loc) · 1.63 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
font-weight: 600;
}
body {
background:black;
margin:0;
}
.logo a {
padding: 0px 20px;
border: 1px solid transparent;
height: 10px;
width: 10px;
text-transform: uppercase;
text-decoration: none;
}
ul {
list-style: none;
float: left;
display: flex;
margin-top: 20px;
}
ul li a {
text-decoration: none;
color: #fff;
padding: 10px 20px;
border: 1px solid transparent;
margin: 10px;
border-radius: 5px;
transition: 0.6s ease;
cursor: pointer;
}
ul li a:hover {
background: #fff;
color: #000;
border-radius: 10px;
}
ul li.active a {
background: #fff;
color: #000;
}
.navBar {
width: 100vw;
height: 58px;
}
.titre {
text-align: center;
margin-top: 25vh;
}
.text {
text-align: center;
}
.texta {
color: #fff;
font-size: 35px;
}
.titre h1 {
color: #fff;
font-size: 70px;
}
.bouton {
height: auto;
text-align: center;
margin-top: 23px;
display: flex;
justify-content: center;
align-content: center;
}
.bouton a {
border: 1px solid #fff;
border-radius: 50px;
text-decoration: none;
color:white;
font-size: 27px;
padding: 10px 18.5px;
margin-bottom:15px;
}
.btn {
transition: 00.6s ease;
}
.btn:hover {
background-color: #fff;
color: #000;
}
.project-card {
color:black;
background:white;
border-radius: 18px;
margin: 15px;
padding: 6px;
}
.project-date {
text-align: right;
font-size: 17px;
}
.project-name {
font-weight: bold;
}