-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (43 loc) · 846 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:[email protected]&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
* {font-family: "Schibsted Grotesk", sans-serif; color:white}
.flex {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
.site {
background: #3e59b8;
transition: ease 1s;
padding: 15px;
width: 310px;
border-radius: 10px;
}
.site:hover {
box-shadow: 0 4px 8px 0 white, 0 6px 20px 0 white;
transform: scale(1.3,1.3);
}
body,html {
text-align: center;
background: #273f91;
}
button {
border: none;
padding: 10px;
background: #6cc263;
border-radius: 5px;
cursor: pointer;
transition: ease 200ms;
}
button:hover {
border-radius: 2px;
}
input {
color: black;
}
.divider {
width: 50%;
height: 3px;
background: white;
margin: auto;
}