-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (84 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
body {
font-family:sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #fff;
padding: 20px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.menu {
list-style: none;
margin: 0;
padding: 0;
}
.menu li {
display: inline-block;
margin-right: 20px;
}
.menu li a {
text-decoration: none;
color: #333;
}
.presentation {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.image-container {
width: 50%;
}
.image-container img {
width: 100%;
height: auto;
}
.login-container {
width: 50%;
}
.login-container h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.login-container form {
display: flex;
flex-direction: column;
}
.login-container label {
margin-bottom: 5px;
}
.login-container input {
padding: 10px;
;
}
.carousel {
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
}
.carousel .card {
flex: 0 0 auto;
margin-right: 16px;
scroll-snap-align: start;
width: 250px;
height: 250px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f5f5f5;
text-align: center;
padding: 20px;
}
.carousel .card:last-child {
margin-right: 0;
}