-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
74 lines (67 loc) · 1.43 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
body {
height: 100%;
width: 100%;
overflow: hidden;
background: repeating-linear-gradient(
45deg,
rgba(7, 7, 7, 0.2) 0px,
rgba(7, 7, 7, 0.2) 39px,
rgba(252, 252, 252, 0.2) 39px,
rgba(252, 252, 252, 0.2) 65px,
rgba(105, 105, 105, 0.2) 65px,
rgba(105, 105, 105, 0.2) 104px,
rgba(72, 72, 72, 0.2) 104px,
rgba(72, 72, 72, 0.2) 145px,
rgba(29, 29, 29, 0.2) 145px,
rgba(29, 29, 29, 0.2) 184px
),
repeating-linear-gradient(
45deg,
rgba(154, 154, 154, 0.2) 0px,
rgba(154, 154, 154, 0.2) 13px,
rgba(60, 60, 60, 0.2) 13px,
rgba(60, 60, 60, 0.2) 59px,
rgba(117, 117, 117, 0.2) 59px,
rgba(117, 117, 117, 0.2) 84px,
rgba(207, 207, 207, 0.2) 84px,
rgba(207, 207, 207, 0.2) 110px,
rgba(184, 184, 184, 0.2) 110px,
rgba(184, 184, 184, 0.2) 148px
),
linear-gradient(90deg, rgb(75, 30, 121), rgb(29, 79, 244));
}
#boardContainer {
display: flex;
}
#buttons{
display: flex;
flex-wrap: wrap;
}
button{
padding: 10px;
margin: 5px;
background: black;
color: white;
font-size: 2vh;
border-style: none;
border-radius: 5px;
}
button:hover{
background: grey;
color: white;
}
.seprator {
background: whitesmoke;
height: inherit;
width: 2px;
margin-right: 20px;
}
.headline {
font-size: 5vh;
}
.infoContainer {
color: white;
font-size: 2vh;
font-weight: 800;
font-family: "lato";
}