-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
142 lines (138 loc) · 2.94 KB
/
default.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
:root{
--maincolor:#eaeaea;
--secondaryColor:#fff;
--mainText:black;
--borderColor:#c1c1c1;
--secondaryText:#4b5156;
}
html, body{
padding:0;
margin:0;
}
h1, h2,h3,h4,h5,h6, strong{
color: var(--mainText);
font-family: 'Russo One', sans-serif;
font-weight: 500;
}
p, li, span, label, input, textarea{
color: var(--secondaryText);
font-family: 'Roboto Mono', monospace;
}
h1{font-size: 56px;}
h2{font-size: 36px;}
h3{font-size: 28px;}
h4{font-size: 24px;}
h5{font-size: 20px;}
h6{font-size: 16px;}
a{
text-decoration: none;
color:#17a2b8;
}
.s1{
background-color: var(--maincolor);
border-bottom: 1px solid var(--borderColor);
overflow: auto;
}
ul{
list-style: none;
}
.s2{
background-color: var(--secondaryColor);
border-bottom: 1px solid var(--borderColor);
overflow: auto;
}
.main-container{
width: 1200px;
margin:0 auto;
}
.greeting-wrapper{
display: grid;
text-align: center;
align-content: center;
min-height: 10em;
}
.intro-wrapper{
background-color: var(--secondaryColor);
border:1px solid var(--borderColor);
border-radius: 5px 5px 0 0;
-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
display:grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 3em 30em;
grid-template-areas:
'nav-wrapper nav-wrapper'
'left-column right-column';
}
.nav-wrapper{
grid-area:nav-wrapper;
border-bottom: 1px solid var(--borderColor);
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--maincolor);
border:1px solid var(--borderColor);
}
#navigation{
margin:0;
padding: 10px;
}
#navigation{
display: inline-block;
margin-right:5px;
margin-left: 5px;
}
.left-column{
grid-area: left-column;
}
#profile{
height: 200px;
display: block;
margin:0 auto;
width:200px;
object-fit: cover;
border:2px solid var(--borderColor);
}
.theme-dot{
height: 30px;
width:30px;
border-radius: 50px;
margin: 5px;
-webkit-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
cursor: pointer;
background-color: black;
}
.right-column{
grid-area:right-column;
}
.dots-wrapper{
display: flex;
padding: 10px;
}
.browser-dot{
background-color: black;
height:15px;
width:15px;
border-radius: 50%;
margin: 5px;
box-shadow: -1px 1px 3px -1px rgba(0,0,0,0.75);
-webkit-box-shadow:-1px 1px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -1px ipx 3px -1px rgba(0, 0,0,0.75);
}
#dot-1{
background-color: #FC6058;
}
#dot-2{
background-color: #FEC02F;
}
#dot-3{
background-color: #2ACA3E;
}
@media screen and (max-width: 1200px){
.main-container{
width: 95%;
}
}