-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (68 loc) · 1.6 KB
/
styles.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
74
75
76
* {
margin 0;
padding 0;
}
body{
background-color: black;
}
#container{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
#triangleCanvas{
min-width: 500px;
min-height: 500px;
background-color: white;
margin: 20px;
border: 3px solid #717b82;
margin-bottom: 10px;
}
#pixels{
color: white;
margin: 5px;
margin-bottom: 10px;
font-size: 25px;
font-weight: bold;
font-family: sans-serif;
}
#test{
color: white;
}
#triangleDescription{
color: white;
border: 3px solid white;
width: 980px;
height: 150px;
padding: 10px;
font-family: sans-serif;
font-size: 18px;
}
.btn {
background: #717b82;
background-image: -webkit-linear-gradient(top, #717b82, #232526);
background-image: -moz-linear-gradient(top, #717b82, #232526);
background-image: -ms-linear-gradient(top, #717b82, #232526);
background-image: -o-linear-gradient(top, #717b82, #232526);
background-image: linear-gradient(to bottom, #717b82, #232526);
-webkit-border-radius: 60;
-moz-border-radius: 60;
border-radius: 60px;
font-family: Arial;
color: #ffffff;
font-size: 15px;
padding: 10px 10px 10px 10px;
text-decoration: none;
margin-bottom: 10px;
}
.btn:hover {
background: #232526;
background-image: -webkit-linear-gradient(top, #232526, #717b82);
background-image: -moz-linear-gradient(top, #232526, #717b82);
background-image: -ms-linear-gradient(top, #232526, #717b82);
background-image: -o-linear-gradient(top, #232526, #717b82);
background-image: linear-gradient(to bottom, #232526, #717b82);
text-decoration: none;
}