-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
77 lines (65 loc) · 1.34 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
html {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #eceff1;
}
body {
margin: 0;
font-size: 16px;
line-height: 25px;
}
header {
text-align: center;
padding: 20px 15%;
color: #5c5c5c;
background: rgb(255, 255, 255);
box-shadow: 0 3px 6px -3px #bdbdbd;
}
header p{
text-align: justify;
color: #5c5c5c;
}
main{
padding-top: 1.5rem;
line-height: 40px;
}
section {
display:flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 10%;
}
section a {
display:flex;
flex-direction: column;
flex: 250px;
padding: 10px;
margin: 10px;
border-radius: 5px;
background: rgb(255, 255, 255);
text-decoration: none;
color: black;
border-bottom:3px solid #4285f4;
}
.jog0{
display: flex;
justify-content: space-between;
margin-top: 0.3rem;
font-size: 15px;
color: #ccc;
}
.jog1{
display: flex;
justify-content: space-between;
margin-top: 0.5rem;
}
button{
background: #4285f4;
color: white;
border: none;
padding: 0.3rem 0.5rem;
margin-right: 0.2rem;
border-radius: 3px;
}
button:focus{
outline:0;
}