-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (41 loc) · 705 Bytes
/
styles.css
File metadata and controls
47 lines (41 loc) · 705 Bytes
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
height: 100vh;
display: flex;
}
.col {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.col h2 {
padding: 10px;
color: blue;
border-radius: 10px;
transition: background 0.3s ease-in;
}
.col h2:hover {
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.col button {
outline: none;
border: none;
background: transparent;
font-size: 3rem;
color: #fff;
padding: 10px;
border-radius: 10px;
}
.col button:hover {
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
transition: background 0.3s ease-in;
}