-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBranch.css
56 lines (53 loc) · 1.03 KB
/
Branch.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
.branchoption{
padding: 10px;
border: none;
border-radius: 5px;
color: rgb(213, 214, 216);
font-size: xx-large;
margin-top: 0px;
text-align: center;
}
body{
background-color: rgb(36, 123, 149);
text-align: center;
}
table{
margin-left: auto;
margin-right: auto;
}
.Next{
background-color:rgb(240, 255, 255);
color: black;
border: none;
border-radius: 50px;
font-size: x-large;
margin-top: 20px;
transition: box-shadow 0.15s;
cursor: pointer;
}
.Next:hover{
box-shadow: 0 2px 10px rgba(240, 255, 255, 0.3);
}
.head{
margin-top: 30px;
margin-left: 10px;
color: azure;
font-family: Papyrus, fantasy;
font-weight: 500;
font-size: 3rem;
}
.decorate{
background-color: rgb(241, 241, 194);
font-size: x-large;
border-radius: 3px;
cursor: pointer;
}
.sem{
color: azure;
margin-top: 50px;
font-weight: 500;
font-size: x-large;
}
.footer{
margin-top: 100px;
}