-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (70 loc) · 1.37 KB
/
style.css
File metadata and controls
82 lines (70 loc) · 1.37 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
*{
padding: 0;
}
body{
background-image: url(https://www.muycomputer.com/wp-content/uploads/2019/05/HubbleLegacyField.jpg);
margin: 0;
padding: 0;
}
#template{
display: flex;
align-items:center;
justify-content:center;
}
#card{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
overflow-x:auto;
overflow:inherit;
gap: 1%;
align-items: center;
}
.item {
flex: 1 1 auto;
width: 200px;
font-size: 100%;
}
.card{
text-align: center;
border-style: solid;
width: 45%;
height: 50vh;
padding-top: 1%;
background-color: rgb(120 135 143 / 39%);
margin-top: 6%;
border-color: #88a59b;
margin-top: 15%;
}
header{
width: 100%;
display: flex;
justify-content:center ;
position: fixed;
}
#logo{
width: 15%; /*delete heigth and change 25 to 15*/
}
#image{
width: 40%;
height: 30%; /*change 18 to 30*/
border-radius: 35%;
}
#position-button {
background-color: #FFD700;
color: black;
border: none;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
box-shadow: 0 5px 0 #C0C0C0;
transition: transform 0.2s ease-in-out;
position: fixed;
margin-top: 0.5%;
}
#position-button:hover {
transform: translateY(-5px);
}