-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (87 loc) · 1.24 KB
/
styles.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import url('https://fonts.googleapis.com/css?family=Roboto:100');
*{
font-family: 'Roboto', sans-serif;
color: #34495e;
}
#canvas{
width: 100%;
height: 95%;
}
html, body{
height: 100%;
width: 100%;
margin: 0;
}
body{
background: #ecf0f1;
}
.frame{
position: absolute;
top: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
}
.title{
text-align: center;
font-size: 5em;
padding: 10px;
}
ul{
width: 100%;
margin: auto;
text-align: center;
}
ul, li{
padding: 0;
display: inline-block;
cursor: pointer;
}
li{
font-size: 1.5em;
padding:15px;
}
li:hover{
color: #7f8c8d;
}
*::selection{
background: #2c3e50;
color: #ecf0f1;
}
@media(orientation: portrait){
.title{
font-size: 3em;
}
ul, li{
font-size: 1em;
}
}
.projects{
height: 80%;
width: 80%;
background: #34495e;
border-radius: 2px;
}
.section{
background: white;
margin: 25px;
color: black;
border-radius: 2px;
}
.backTop{
position: absolute;
background: #34495e;
bottom: 0;
right: 0;
color: #ecf0f1;
border-radius: 2px;
padding: 5px;
cursor: pointer;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 50px;
text-align: center;
}