-
Notifications
You must be signed in to change notification settings - Fork 1
/
tri.css
88 lines (75 loc) · 1.24 KB
/
tri.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
77
78
79
80
81
82
83
84
85
86
87
88
body {
background: black;
margin: 0;
font-size: 100%;
}
h1 {
background: green;
margin: 0;
text-align: center;
color: white;
padding: 8px 0;
}
#titleDisplay {
font-size: 150%;
}
#stripe {
background: black;
height: 50px;
margin: 0;
padding-top: 10px;
}
.btn {
display: block;
height: 50px;
width: 50px;
border-radius: 50%;
border: 6px solid black;
margin: 0 auto;
background-image: url("assets/start.jpg");
background-repeat: no-repeat;
background-size: 140%;
background-position: -8px -8px;
}
.circle:hover {
color: white;
}
.triangle {
margin-left: auto;
margin-right: auto;
width: 0;
height: 0;
border-left: 340px solid transparent;
border-right: 340px solid transparent;
border-bottom: 510px solid LightGray;
}
.wrapper {
display: grid;
grid-auto-rows: 85px;
margin-top: 30px;
background-color: green;
position: relative;
left: -302px;
}
.row1a {
display: flex;
left: 440px;
line-height: 25px;
}
.row {
display: flex;
margin: 0 auto;
line-height: 50px;
}
.circle {
margin-right: auto;
margin-left: 60px;
height: 50px;
width: 50px;
border-radius: 50px;
border: none;
text-align: center;
font-weight: bold;
font-size: 150%;
background-color: green;
}