-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
66 lines (61 loc) · 1.42 KB
/
globals.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
.card {
margin: 30px;
background-image: url('/card.webp');
width: 600px;
height: 400px;
border: 2px solid #c2c2c2;
border-radius: 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.header {
padding: 10px;
height: 100px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.button1 {
text-decoration: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
display: flex;
flex-direction: row;
align-items: center;
border-radius: 10%;
margin: 0 10px 0 10px;
color: black;
}
.button1:hover {
color: blue;
}
.button2 {
text-decoration: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
font-size: 20px;
text-align: center;
width: 260px;
display: flex;
flex-direction: row;
align-items: center;
color: black;
height: 60px;
background-color: white;
border: 5px solid white;
border-radius: 5px;
}
.button2:hover {
color: blue;
}