-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 1.04 KB
/
style.css
File metadata and controls
56 lines (50 loc) · 1.04 KB
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
.Navbar{
display: flex;
justify-content: space-between;
padding-left:100px;
padding-right: 100px;
padding-top: 15px;
padding-bottom: 15px;
box-shadow:2px 1px 2px #eee;
}
.Navbar-right{
padding-left: 20px;padding-right: 20px;font-family:sans-serif;cursor: pointer;
}
.Button-sign-up{
background-color: #397dd1;
border-radius: 3px;
border:100px;
padding:10px;
padding-left: 25px;
padding-right: 25px;
color:#ffffffff;
font-size: large;
cursor: pointer;
}
.Button-sign-up:hover{
background-color: #223449;
border-radius: 3px;
border:100px;
padding:10px;
padding-left: 25px;
padding-right: 25px;
color:#ffffffff;
font-size: large;
cursor: pointer;
box-shadow: 2px 2px 2px #eee;
}
.list{
font-family: sans-serif;
font-size: 16px;
line-height: 2;
font-weight: 100;
}
.inputBox{
width: 150px;
height: 30px;
}
.inputBox:focus{
outline: none;
border-color: rgb(57,124,209);
box-shadow: 0 0 1px 0 rgb(57,124,209);
}