-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.css
55 lines (55 loc) · 869 Bytes
/
main.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
body{
margin: auto;
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
display: flex;
align-items: center;
flex-direction: column;
color: #2c3e50;
}
svg{
width: 50vw;
}
#graph{
width: 50vw;
}
#repo{
width: 46px;
height: 46px;
}
header{
padding: 12px;
display: flex;
justify-content: space-between;
width: 50vw;
}
h1{
font-size: 20px;
}
#textarea {
width: 50vw;
height: 30vh;
border: 1px gray bold;
}
#button{
margin: 8px;
cursor: pointer;
}
@media screen and (max-width:700px) {
svg{
width: 90vw;
}
header{
width: 95vw;
padding: 8px;
}
#graph{
width: 90vw;
}
#textarea {
width: 90vw;
height: 30vh;
}
}