-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (53 loc) · 853 Bytes
/
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
body {
background-color: rgba(24, 24, 24, 255);
font-family: Arial;
color: white;
}
h1 {
text-align: center;
font-size: 35px;
}
table,
tr,
th {
border-collapse: collapse;
border-bottom: 2px solid rgba(32, 32, 32, 255);
text-align: left;
margin-left: 25%;
margin-right: 25%;
width: 50%;
font-size: 15px;
}
th {
height: 40px;
}
button {
font-family: Arial;
border-radius: 20px;
width: 100px;
height: 30px;
border-style: solid;
background-color: rgba(30, 185, 84, 255);
border-color: rgba(37, 112, 62, 255);
border-width: 1px;
color: white;
font-size: 15px;
}
button:hover {
border-radius: 22px;
width: 104px;
height: 32px;
background-color: rgba(30, 215, 96, 255);
}
.hwNum {
width: 20%;
}
.desc {
width: 30%;
}
#myName {
position: absolute;
bottom: 0;
right: 0;
font-size: 10px;
}