-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
96 lines (81 loc) · 1.53 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
/*
Name: Vlad O.
Date: 11/14/2022
File: styles.css
File desc: styles file for show_data.html
*/
/* layout logic */
body {
display: grid;
width: 900px;
margin: auto;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
background: url(background-image.png);
background-size: cover;
padding-top: 100px;
align-content: center;
justify-content: center;
}
/* your styles go here... */
* {
font-family: Arial, sans-serif;
}
#left-column {
background-color: #f8f8f8;
padding: 50px;
width: 500px;
border-radius: 20px;
box-shadow: 0px 5px 10px 2px #c0c0c0;
height: 430px;
}
#left-column:hover {
box-shadow: 0px 5px 10px 2px #9d9d9d;
}
#left-column p {
padding-bottom: 30px;
border-bottom: 1px solid #d9d9d9;
}
#left-column p a {
font-weight: bold;
}
#right-column {
background-color: #f8f8f8;
padding: 50px;
width: 400px;
border-radius: 20px;
box-shadow: 0px 5px 10px 2px #c0c0c0;
height: 400px;
align-self: center;
justify-self: center;
}
#right-column:hover {
box-shadow: 0px 5px 10px 2px #9d9d9d;
}
section {
padding: 10px 0 10px 0;
}
h1 {
margin: 0;
}
#left-column div section:first-of-type {
font-size: 20px;
font-weight: bold;
margin-top: 20px;
}
button {
width: 80px;
height: 30px;
border-radius: 10px;
border: 0;
background-color: #e7e7e7;
font-size: 20px;
color: #868686;
}
button:hover {
border: #d2d2d2 1px solid;
color: #000001;
}
aside li {
padding: 20px 10px 20px 0;
}