-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (93 loc) · 1.78 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
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
body {
padding: 0px;
margin: 0;
background-color: #0b1e2a;
}
.sectRev {
margin-top: 50px;
display: grid;
grid-template-columns: 5% 90% 5%;
grid-template-rows: 20% 80%;
}
h1 {
color: #ecf0f1;
font-family: sans-serif;
font-size: 35px;
font-weight: bolt;
text-align: center;
grid-column: 2;
grid-row: 1;
margin-bottom: 45px;
}
.contRev {
background-color: #102F43;
grid-column: 2;
grid-row: 2;
text-align: center;
height: 500px;
border-radius: 15px;
margin-left: 10%;
margin-right: 10%;
}
#imgRev {
width: 130px;
height: 130px;
border-radius: 50%;
border: solid 2px #3498db;
margin-top: 30px;
}
#titleRev {
font-family: monospace;
font-size: 30px;
font-weight: 600;
color: #ecf0f1;
margin-bottom: 5px;
}
#spanRev {
font-family: monospace;
font-size: 15px;
font-weight: 400;
color: #3498db;
}
#textRev {
margin-right: 5%;
margin-left: 5%;
font-family: sans-serif;
font-weight: 400;
color: #979a9a;
line-height: 27px;
}
#btnRev {
padding: 10px;
margin-top: 20px;
border: solid 2px #3498db;
background-color: #0b1e2a;
border-radius: 3px;
color: #3498db;
font-family: monospace;
font-size: 15px;
font-weight: 400;
}
#btnRev:hover {
background-color: #102F43;
}
@media screen and (min-width: 575px ) and (max-width: 990px) and (orientation:portrait) {
.sectRev {
margin-top: 10px;
}
.contRev {
height: 500px;
padding-left: 3%;
padding-right: 3%;
}
}
@media screen and (max-width: 575px) and (orientation:portrait) {
.sectRev {
margin-top: 0px;
}
.contRev {
margin-left: 0px;
margin-right: 0px;
height: 580px;
}
}